Commit 80f12388 authored by reimar's avatar reimar

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


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@19349 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent d71d6c5f
...@@ -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%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment