mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-02-17 20:37:04 +00:00
avcodec/flicvideo: Check remaining bytes in FLI*COPY
Fixes: Timeout Fixes: 37795/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_FLIC_fuzzer-4846536543043584 Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
parent
018b611b4b
commit
5f835efbca
@ -735,6 +735,8 @@ static int flic_decode_frame_15_16BPP(AVCodecContext *avctx,
|
|||||||
bytestream2_skip(&g2, chunk_size - 6);
|
bytestream2_skip(&g2, chunk_size - 6);
|
||||||
} else {
|
} else {
|
||||||
|
|
||||||
|
if (bytestream2_get_bytes_left(&g2) < 2 * s->avctx->width * s->avctx->height )
|
||||||
|
return AVERROR_INVALIDDATA;
|
||||||
for (y_ptr = 0; y_ptr < s->frame->linesize[0] * s->avctx->height;
|
for (y_ptr = 0; y_ptr < s->frame->linesize[0] * s->avctx->height;
|
||||||
y_ptr += s->frame->linesize[0]) {
|
y_ptr += s->frame->linesize[0]) {
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user