提交 ad921086 编写于 作者: R Reimar Döffinger

Add a check to vp6_parse_coeff_huffman to ensure it does not overread the input buffer.

Originally committed as revision 19349 to svn://svn.ffmpeg.org/ffmpeg/trunk
上级 7576516a
...@@ -372,6 +372,8 @@ static void vp6_parse_coeff_huffman(VP56Context *s) ...@@ -372,6 +372,8 @@ static void vp6_parse_coeff_huffman(VP56Context *s)
if (coeff_idx) if (coeff_idx)
break; break;
} else { } else {
if (get_bits_count(&s->gb) >= s->gb.size_in_bits)
return;
coeff = get_vlc2(&s->gb, vlc_coeff->table, 9, 3); coeff = get_vlc2(&s->gb, vlc_coeff->table, 9, 3);
if (coeff == 0) { if (coeff == 0) {
if (coeff_idx) { if (coeff_idx) {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册