You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-15 14:13:16 +02:00
mpc8: check seektable size before attempting to use it.
Fixes null pointer dereference Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
@@ -145,6 +145,10 @@ static void mpc8_parse_seektable(AVFormatContext *s, int64_t off)
|
|||||||
av_log(s, AV_LOG_ERROR, "No seek table at given position\n");
|
av_log(s, AV_LOG_ERROR, "No seek table at given position\n");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
if (size > INT_MAX/10 || size<=0) {
|
||||||
|
av_log(s, AV_LOG_ERROR, "Seek table size is invalid\n");
|
||||||
|
return;
|
||||||
|
}
|
||||||
if(!(buf = av_malloc(size + FF_INPUT_BUFFER_PADDING_SIZE)))
|
if(!(buf = av_malloc(size + FF_INPUT_BUFFER_PADDING_SIZE)))
|
||||||
return;
|
return;
|
||||||
avio_read(s->pb, buf, size);
|
avio_read(s->pb, buf, size);
|
||||||
|
Reference in New Issue
Block a user