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>
pull/371/head
Michael Niedermayer 5 years ago
parent 3336ca4644
commit 2749e20d04
  1. 2
      libavcodec/fastaudio.c

@ -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…
Cancel
Save