Commit 49062a90 authored by Michael Niedermayer's avatar Michael Niedermayer

avcodec/exr: fix invalid shift in unpack_14()

Fixes: 6154/clusterfuzz-testcase-minimized-5762231061970944
Fixes: runtime error: shift exponent 63 is too large for 32-bit type 'int'

Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpegSigned-off-by: 's avatarMichael Niedermayer <michael@niedermayer.cc>
parent 090c0abf
...@@ -899,7 +899,7 @@ static int pxr24_uncompress(EXRContext *s, const uint8_t *src, ...@@ -899,7 +899,7 @@ static int pxr24_uncompress(EXRContext *s, const uint8_t *src,
static void unpack_14(const uint8_t b[14], uint16_t s[16]) static void unpack_14(const uint8_t b[14], uint16_t s[16])
{ {
unsigned short shift = (b[ 2] >> 2); unsigned short shift = (b[ 2] >> 2) & 15;
unsigned short bias = (0x20 << shift); unsigned short bias = (0x20 << shift);
int i; int i;
......
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