diff options
author | Michael Niedermayer <michael@niedermayer.cc> | 2021-04-23 19:33:58 +0200 |
---|---|---|
committer | Michael Niedermayer <michael@niedermayer.cc> | 2021-07-31 22:08:19 +0200 |
commit | b4e77dfca1c2970446f79277034d8e60c3fe3f4e (patch) | |
tree | b2325cacf45587138400da7f3a8f06f39af47488 | |
parent | 527821a2dd6f19d9a4d2abe05833346ae86c66c6 (diff) | |
download | ffmpeg-b4e77dfca1c2970446f79277034d8e60c3fe3f4e.tar.gz |
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>
-rw-r--r-- | libavformat/bfi.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavformat/bfi.c b/libavformat/bfi.c index bff6f0154e..69000118fa 100644 --- a/libavformat/bfi.c +++ b/libavformat/bfi.c @@ -73,6 +73,8 @@ static int bfi_read_header(AVFormatContext * s) return AVERROR_INVALIDDATA; bfi->nframes = avio_rl32(pb); + if (bfi->nframes < 0) + return AVERROR_INVALIDDATA; avio_rl32(pb); avio_rl32(pb); avio_rl32(pb); |