mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2026-02-09 11:20:14 +00:00
avcodec/scpr: Check for min > max in decompress_p()
Fixes: Timeout
Fixes: 9342/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_SCPR_fuzzer-4795990841229312
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 3378194ce8)
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
parent
cd42c19f53
commit
b95c209a61
1 changed files with 3 additions and 0 deletions
|
|
@ -526,6 +526,9 @@ static int decompress_p(AVCodecContext *avctx,
|
|||
return ret;
|
||||
|
||||
max += temp << 8;
|
||||
if (min > max)
|
||||
return AVERROR_INVALIDDATA;
|
||||
|
||||
memset(s->blocks, 0, sizeof(*s->blocks) * s->nbcount);
|
||||
|
||||
while (min <= max) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue