You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-15 14:13:16 +02:00
Fix crash in MLP decoder due to integer overflow.
Probably only DoS, init_get_bits sets buffer to NULL, thus causing a NULL-dereference directly after. Originally committed as revision 21426 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
@@ -959,7 +959,7 @@ static int read_access_unit(AVCodecContext *avctx, void* data, int *data_size,
|
|||||||
|
|
||||||
length = (AV_RB16(buf) & 0xfff) * 2;
|
length = (AV_RB16(buf) & 0xfff) * 2;
|
||||||
|
|
||||||
if (length > buf_size)
|
if (length < 4 || length > buf_size)
|
||||||
return -1;
|
return -1;
|
||||||
|
|
||||||
init_get_bits(&gb, (buf + 4), (length - 4) * 8);
|
init_get_bits(&gb, (buf + 4), (length - 4) * 8);
|
||||||
|
Reference in New Issue
Block a user