mirror of https://git.ffmpeg.org/ffmpeg.git
avcodec/fastaudio: Fix invalid shift exponent
Fixes: shift exponent 32 is too large for 32-bit type 'unsigned int' Fixes: 25434/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_FASTAUDIO_fuzzer-6252363168612352 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
3336ca4644
commit
2749e20d04
|
@ -89,7 +89,7 @@ static int read_bits(int bits, int *ppos, unsigned *src)
|
|||
|
||||
pos = *ppos;
|
||||
pos += bits;
|
||||
r = src[(pos - 1) / 32] >> (32 - pos % 32);
|
||||
r = src[(pos - 1) / 32] >> ((-pos) & 31);
|
||||
*ppos = pos;
|
||||
|
||||
return r & ((1 << bits) - 1);
|
||||
|
|
Loading…
Reference in New Issue