Browse Source

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>
tags/n4.4
Michael Niedermayer 4 years ago
parent
commit
2749e20d04
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavcodec/fastaudio.c

+ 1
- 1
libavcodec/fastaudio.c View File

@@ -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