mirror of
https://gitee.com/openharmony/third_party_ffmpeg
synced 2024-12-04 01:01:30 +00:00
avcodec/zmbv: Check that the buffer is large enough for mvec
Fixes: Timeout Fixes: 4143/clusterfuzz-testcase-4736864637419520 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
73964680d7
commit
2ab9568a2c
@ -539,6 +539,8 @@ static int decode_frame(AVCodecContext *avctx, void *data, int *got_frame, AVPac
|
|||||||
} else {
|
} else {
|
||||||
frame->key_frame = 0;
|
frame->key_frame = 0;
|
||||||
frame->pict_type = AV_PICTURE_TYPE_P;
|
frame->pict_type = AV_PICTURE_TYPE_P;
|
||||||
|
if (c->decomp_len < 2LL * ((c->width + c->bw - 1) / c->bw) * ((c->height + c->bh - 1) / c->bh))
|
||||||
|
return AVERROR_INVALIDDATA;
|
||||||
if (c->decomp_len)
|
if (c->decomp_len)
|
||||||
c->decode_xor(c);
|
c->decode_xor(c);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user