Commit c51357d2 authored by Michael Niedermayer's avatar Michael Niedermayer

avcodec/wavpack: Fix runtime error: signed integer overflow: -1386217472 * 4...

avcodec/wavpack: Fix runtime error: signed integer overflow: -1386217472 * 4 cannot be represented in type 'int'

Fixes: 1853/clusterfuzz-testcase-minimized-5471155626442752

Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpegSigned-off-by: 's avatarMichael Niedermayer <michael@niedermayer.cc>
parent 6c3a63fc
......@@ -310,7 +310,7 @@ static float wv_get_value_float(WavpackFrameContext *s, uint32_t *crc, int S)
}
if (S) {
S *= 1 << s->float_shift;
S *= 1U << s->float_shift;
sign = S < 0;
if (sign)
S = -S;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment