Re: [FFmpeg-devel] [PATCH 1/3] avcodec/exr: fix undefined shift in pxr24_uncompress()

2017-11-04 Thread Michael Niedermayer
On Sat, Nov 04, 2017 at 10:21:37AM +0100, Paul B Mahol wrote: > On 11/4/17, Michael Niedermayer wrote: > > Fixes: runtime error: left shift of 255 by 24 places cannot be represented > > in type 'int' > > Fixes: 3787/clusterfuzz-testcase-minimized-5728764920070144 > > > >

Re: [FFmpeg-devel] [PATCH 1/3] avcodec/exr: fix undefined shift in pxr24_uncompress()

2017-11-04 Thread Paul B Mahol
On 11/4/17, Michael Niedermayer wrote: > Fixes: runtime error: left shift of 255 by 24 places cannot be represented > in type 'int' > Fixes: 3787/clusterfuzz-testcase-minimized-5728764920070144 > > Found-by: continuous fuzzing process >

[FFmpeg-devel] [PATCH 1/3] avcodec/exr: fix undefined shift in pxr24_uncompress()

2017-11-03 Thread Michael Niedermayer
Fixes: runtime error: left shift of 255 by 24 places cannot be represented in type 'int' Fixes: 3787/clusterfuzz-testcase-minimized-5728764920070144 Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg Signed-off-by: Michael Niedermayer