Commit bd70303e authored by Michael Niedermayer's avatar Michael Niedermayer

avformat/swfdec: Check return value of init_get_bits8()

Fixes: CID1322320
Signed-off-by: 's avatarMichael Niedermayer <michael@niedermayer.cc>
parent 32f53958
...@@ -72,7 +72,8 @@ static int swf_probe(AVProbeData *p) ...@@ -72,7 +72,8 @@ static int swf_probe(AVProbeData *p)
&& p->buf[3] <= 20) && p->buf[3] <= 20)
return AVPROBE_SCORE_MAX / 4 + 1; return AVPROBE_SCORE_MAX / 4 + 1;
init_get_bits8(&gb, p->buf + 3, p->buf_size - 3); if (init_get_bits8(&gb, p->buf + 3, p->buf_size - 3) < 0)
return 0;
skip_bits(&gb, 40); skip_bits(&gb, 40);
len = get_bits(&gb, 5); len = get_bits(&gb, 5);
......
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