mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2024-12-12 02:04:58 +00:00
avcodec/mv30: check mode_size vs. input space
Fixes: Timeout (longer than my patience vs 1sec)
Fixes: 22984/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_MV30_fuzzer-5630021988515840
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 75e2ac4f07
)
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
parent
f823932349
commit
95b9ac040e
@ -410,6 +410,9 @@ static int decode_intra(AVCodecContext *avctx, GetBitContext *gb, AVFrame *frame
|
||||
int ret;
|
||||
|
||||
mgb = *gb;
|
||||
if (get_bits_left(gb) < s->mode_size * 8)
|
||||
return AVERROR_INVALIDDATA;
|
||||
|
||||
skip_bits_long(gb, s->mode_size * 8);
|
||||
|
||||
linesize[0] = frame->linesize[0];
|
||||
|
Loading…
Reference in New Issue
Block a user