提交 5dc527f9 编写于 作者: Z Zhong Li 提交者: Paul B Mahol

lavc/midivid: check return value of init_get_bits8()

Fix CID 1456088
Signed-off-by: NZhong Li <zhongli_dev@126.com>
上级 94ad5d01
......@@ -63,7 +63,7 @@ static int decode_mvdv(MidiVidContext *s, AVCodecContext *avctx, AVFrame *frame)
if (intra_flag) {
nb_blocks = (avctx->width / 2) * (avctx->height / 2);
} else {
int skip_linesize;
int ret, skip_linesize;
nb_blocks = bytestream2_get_le32(gb);
skip_linesize = avctx->width >> 1;
......@@ -73,7 +73,9 @@ static int decode_mvdv(MidiVidContext *s, AVCodecContext *avctx, AVFrame *frame)
if (bytestream2_get_bytes_left(gb) < mask_size)
return AVERROR_INVALIDDATA;
init_get_bits8(&mask, mask_start, mask_size);
ret = init_get_bits8(&mask, mask_start, mask_size);
if (ret < 0)
return ret;
bytestream2_skip(gb, mask_size);
skip = s->skip;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册