Re: [FFmpeg-devel] [PATCH 2/4] avcodec/agm: Fix overflow of signed shift

2019-07-19 Thread Michael Niedermayer
On Mon, Jul 01, 2019 at 12:16:49AM +0200, Michael Niedermayer wrote: > Fixes: left shift of 1 by 31 places cannot be represented in type 'int' > Fixes: > 15328/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_AGM_fuzzer-5637545171353600 > > Found-by: continuous fuzzing process > https://github.

[FFmpeg-devel] [PATCH 2/4] avcodec/agm: Fix overflow of signed shift

2019-06-30 Thread Michael Niedermayer
Fixes: left shift of 1 by 31 places cannot be represented in type 'int' Fixes: 15328/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_AGM_fuzzer-5637545171353600 Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg Signed-off-by: Michael Niedermaye