提交 46f72ea5 编写于 作者: M Michael Niedermayer

avcodec/vp7: check buffer size

Fixes overread
Fixes Ticket 3501
Found-by: NPiotr Bandurski <ami_stuff@o2.pl>
Signed-off-by: NMichael Niedermayer <michaelni@gmx.at>
上级 067ada04
......@@ -434,6 +434,11 @@ static int vp7_decode_frame_header(VP8Context *s, const uint8_t *buf, int buf_si
s->invisible = 0;
part1_size = AV_RL24(buf) >> 4;
if (buf_size < 4 - s->profile + part1_size) {
av_log(s->avctx, AV_LOG_ERROR, "Buffer size %d is too small, needed : %d\n", buf_size, 4 - s->profile + part1_size);
return AVERROR_INVALIDDATA;
}
buf += 4 - s->profile;
buf_size -= 4 - s->profile;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册