Commit a3655bb0 authored by Michael Niedermayer's avatar Michael Niedermayer

avcodec/apedec: Fix undefined integer overflow in decode_array_0000()

Fixes: signed integer overflow: -2143289344 - 6246400 cannot be represented in type 'int'
Fixes: 19239/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_APE_fuzzer-5173755680915456

Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpegSigned-off-by: 's avatarMichael Niedermayer <michael@niedermayer.cc>
parent 07754f3f
...@@ -615,7 +615,7 @@ static void decode_array_0000(APEContext *ctx, GetBitContext *gb, ...@@ -615,7 +615,7 @@ static void decode_array_0000(APEContext *ctx, GetBitContext *gb,
return ; return ;
} }
out[i] = get_rice_ook(&ctx->gb, rice->k); out[i] = get_rice_ook(&ctx->gb, rice->k);
rice->ksum += out[i] - out[i - 64]; rice->ksum += out[i] - (unsigned)out[i - 64];
while (rice->ksum < ksummin) { while (rice->ksum < ksummin) {
rice->k--; rice->k--;
ksummin = rice->k ? ksummin >> 1 : 0; ksummin = rice->k ? ksummin >> 1 : 0;
......
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