mirror of https://git.ffmpeg.org/ffmpeg.git
avcodec/jpeglsdec: Fix k=16 in ls_get_code_regular()
Fixes: Timeout
Fixes: left shift of 33046 by 16 places cannot be represented in type 'int'
Fixes: 29258/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_MJPEG_fuzzer-4889231489105920
Fixes: 29515/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_MJPEG_fuzzer-6161940391002112
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 980900d991
)
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
parent
ac7566e2d8
commit
b290a54e5f
|
@ -149,7 +149,7 @@ static inline int ls_get_code_regular(GetBitContext *gb, JLSState *state, int Q)
|
|||
{
|
||||
int k, ret;
|
||||
|
||||
for (k = 0; (state->N[Q] << k) < state->A[Q]; k++)
|
||||
for (k = 0; ((unsigned)state->N[Q] << k) < state->A[Q]; k++)
|
||||
;
|
||||
|
||||
#ifdef JLS_BROKEN
|
||||
|
|
Loading…
Reference in New Issue