You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-07-11 14:30:22 +02:00
avformat/bfi: check nframes
Fixes: signed integer overflow: -2147483648 - 1 cannot be represented in type 'int'
Fixes: 29102/clusterfuzz-testcase-minimized-ffmpeg_dem_BFI_fuzzer-6737028768202752
Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
(cherry picked from commit b4e77dfca1
)
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
@ -73,6 +73,8 @@ static int bfi_read_header(AVFormatContext * s)
|
|||||||
return AVERROR_INVALIDDATA;
|
return AVERROR_INVALIDDATA;
|
||||||
|
|
||||||
bfi->nframes = avio_rl32(pb);
|
bfi->nframes = avio_rl32(pb);
|
||||||
|
if (bfi->nframes < 0)
|
||||||
|
return AVERROR_INVALIDDATA;
|
||||||
avio_rl32(pb);
|
avio_rl32(pb);
|
||||||
avio_rl32(pb);
|
avio_rl32(pb);
|
||||||
avio_rl32(pb);
|
avio_rl32(pb);
|
||||||
|
Reference in New Issue
Block a user