You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-15 14:13:16 +02:00
avcodec/wavpack: Fix runtime error: left shift of negative value -5
Fixes: 729/clusterfuzz-testcase-5154831595470848 Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/targets/ffmpeg Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
@@ -273,7 +273,7 @@ static inline int wv_get_value_integer(WavpackFrameContext *s, uint32_t *crc,
|
|||||||
unsigned bit;
|
unsigned bit;
|
||||||
|
|
||||||
if (s->extra_bits) {
|
if (s->extra_bits) {
|
||||||
S <<= s->extra_bits;
|
S *= 1 << s->extra_bits;
|
||||||
|
|
||||||
if (s->got_extra_bits &&
|
if (s->got_extra_bits &&
|
||||||
get_bits_left(&s->gb_extra_bits) >= s->extra_bits) {
|
get_bits_left(&s->gb_extra_bits) >= s->extra_bits) {
|
||||||
|
Reference in New Issue
Block a user