mirror of https://git.ffmpeg.org/ffmpeg.git
avcodec/mjpegdec: Fix runtime error: signed integer overflow: -24543 * 2031616 cannot be represented in type 'int'
Fixes: 943/clusterfuzz-testcase-5114865297391616 Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/targets/ffmpeg Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
parent
fc4f88375b
commit
a78ae465fd
|
@ -776,7 +776,8 @@ static int decode_block_progressive(MJpegDecodeContext *s, int16_t *block,
|
||||||
uint16_t *quant_matrix,
|
uint16_t *quant_matrix,
|
||||||
int ss, int se, int Al, int *EOBRUN)
|
int ss, int se, int Al, int *EOBRUN)
|
||||||
{
|
{
|
||||||
int code, i, j, level, val, run;
|
int code, i, j, val, run;
|
||||||
|
unsigned level;
|
||||||
|
|
||||||
if (*EOBRUN) {
|
if (*EOBRUN) {
|
||||||
(*EOBRUN)--;
|
(*EOBRUN)--;
|
||||||
|
|
Loading…
Reference in New Issue