mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-01-13 21:28:01 +02:00
avcodec/dirac_vlc: Fix invalid shift in ff_dirac_golomb_read_32bit()
Fixes: runtime error: shift exponent 64 is too large for 64-bit type 'residual' (aka 'unsigned long')
Fixes: 2838/clusterfuzz-testcase-minimized-6260066086813696
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 c595139f1f
)
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
parent
fef0ccc401
commit
8a640fc7cb
@ -56,6 +56,9 @@ int ff_dirac_golomb_read_32bit(DiracGolombLUT *lut_ctx, const uint8_t *buf,
|
||||
if ((c_idx + 1) > coeffs)
|
||||
return c_idx;
|
||||
|
||||
if (res_bits >= RSIZE_BITS)
|
||||
res_bits = res = 0;
|
||||
|
||||
/* res_bits is a hint for better branch prediction */
|
||||
if (res_bits && l->sign) {
|
||||
int32_t coeff = 1;
|
||||
|
Loading…
Reference in New Issue
Block a user