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> (cherry picked from commit a78ae465fda902565ed041d93403e04490b4be0d) Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
parent
231e242ed2
commit
b0d6bff2f2
@ -753,7 +753,8 @@ static int decode_block_progressive(MJpegDecodeContext *s, int16_t *block,
|
|||||||
int16_t *quant_matrix,
|
int16_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…
x
Reference in New Issue
Block a user