aboutsummaryrefslogtreecommitdiffstats
path: root/libavcodec
diff options
context:
space:
mode:
authorMichael Niedermayer <michael@niedermayer.cc>2017-06-27 13:47:32 +0200
committerMichael Niedermayer <michael@niedermayer.cc>2017-07-19 02:50:35 +0200
commit2170bdb56d68f792cbeaa61cd85a71249360eea7 (patch)
treecfc76e2b04df7cfd14b1abdb3fcf5fb7e8bcdaf1 /libavcodec
parent665885bfc18904fe30500f30d978580cd2e74f68 (diff)
downloadffmpeg-2170bdb56d68f792cbeaa61cd85a71249360eea7.tar.gz
avcodec/wavpack: Fix invalid shift
Fixes: runtime error: left shift of 1 by 31 places cannot be represented in type 'int' Fixes: 2377/clusterfuzz-testcase-minimized-6108505935183872 Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg Signed-off-by: Michael Niedermayer <michael@niedermayer.cc> (cherry picked from commit c07af720984acaafaa273369080b458d73975775) Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
Diffstat (limited to 'libavcodec')
-rw-r--r--libavcodec/wavpack.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/wavpack.c b/libavcodec/wavpack.c
index 70625548eb..0429adcfe1 100644
--- a/libavcodec/wavpack.c
+++ b/libavcodec/wavpack.c
@@ -837,9 +837,9 @@ static int wavpack_decode_block(AVCodecContext *avctx, int block_no,
continue;
}
bytestream2_get_buffer(&gb, val, 4);
- if (val[0] > 31) {
+ if (val[0] > 30) {
av_log(avctx, AV_LOG_ERROR,
- "Invalid INT32INFO, extra_bits = %d (> 32)\n", val[0]);
+ "Invalid INT32INFO, extra_bits = %d (> 30)\n", val[0]);
continue;
} else if (val[0]) {
s->extra_bits = val[0];