Commit 07da0854 authored by Paul B Mahol's avatar Paul B Mahol

avformat/vfq: fix deadlock in vqf_read_header()

Fixes #3010.
Reported-by: 's avatarPiotr Bandurski <ami_stuff@o2.pl>
Signed-off-by: 's avatarPaul B Mahol <onemda@gmail.com>
parent 88c8ed18
......@@ -163,7 +163,7 @@ static int vqf_read_header(AVFormatContext *s)
header_size -= len;
} while (header_size >= 0);
} while (header_size >= 0 && !url_feof(s->pb));
switch (rate_flag) {
case -1:
......
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