You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-10 06:10:52 +02:00
matroskadec: minor simplification
patch from reimar Originally committed as revision 24804 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
@@ -1734,7 +1734,7 @@ static int matroska_parse_block(MatroskaDemuxContext *matroska, uint8_t *data,
|
|||||||
int offset = 0, pkt_size = lace_size[n];
|
int offset = 0, pkt_size = lace_size[n];
|
||||||
uint8_t *pkt_data = data;
|
uint8_t *pkt_data = data;
|
||||||
|
|
||||||
if (lace_size[n] > size) {
|
if (pkt_size > size) {
|
||||||
av_log(matroska->ctx, AV_LOG_ERROR, "Invalid packet size\n");
|
av_log(matroska->ctx, AV_LOG_ERROR, "Invalid packet size\n");
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user