aboutsummaryrefslogtreecommitdiffstats
path: root/libavcodec
diff options
context:
space:
mode:
authorMichael Niedermayer <michael@niedermayer.cc>2017-06-23 01:58:48 +0200
committerMichael Niedermayer <michael@niedermayer.cc>2017-06-23 03:05:55 +0200
commitb3cf49b6f9a2a3459250350fdb2b70ac164116e0 (patch)
treef1968445dedd415aa8a7514d3c8bd25bd696ef42 /libavcodec
parent10a085a21f2da353652d67f17292b24fbd9fd67a (diff)
downloadffmpeg-b3cf49b6f9a2a3459250350fdb2b70ac164116e0.tar.gz
avcodec/wavpack: Fix integer overflow
Fixes: runtime error: signed integer overflow: 227511904 + 1964113935 cannot be represented in type 'int' Fixes: 2331/clusterfuzz-testcase-minimized-6182185830711296 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 24e95f9d4de012f51fdd5767dff0b3142e13ec3a) Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
Diffstat (limited to 'libavcodec')
-rw-r--r--libavcodec/wavpack.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/wavpack.c b/libavcodec/wavpack.c
index 0dcc05037d..a4f05f094f 100644
--- a/libavcodec/wavpack.c
+++ b/libavcodec/wavpack.c
@@ -219,7 +219,7 @@ static int wv_get_value(WavpackFrameContext *ctx, GetBitContext *gb,
INC_MED(1);
DEC_MED(2);
} else {
- base = GET_MED(0) + GET_MED(1) + GET_MED(2) * (t - 2);
+ base = GET_MED(0) + GET_MED(1) + GET_MED(2) * (t - 2U);
add = GET_MED(2) - 1;
INC_MED(0);
INC_MED(1);