mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-01-24 13:56:33 +02:00
avcodec/interplayacm: Fix overflow of last unused value
Fixes: signed integer overflow: -2147450880 - 65535 cannot be represented in type 'int' Fixes: 18393/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_INTERPLAY_ACM_fuzzer-5667520110919680 Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
parent
7786f6c30e
commit
10eabb8e40
@ -529,7 +529,7 @@ static int decode_block(InterplayACMContext *s)
|
||||
|
||||
for (i = 1, x = -val; i <= count; i++) {
|
||||
s->midbuf[-i] = x;
|
||||
x -= val;
|
||||
x -= (unsigned)val;
|
||||
}
|
||||
|
||||
ret = fill_block(s);
|
||||
|
Loading…
x
Reference in New Issue
Block a user