Commit 6b9be608 authored by Michael Niedermayer's avatar Michael Niedermayer

Merge commit '2a187a07'

* commit '2a187a07':
  asfdec: avoid crash in the case when chunk_len is 0 or pkt_len is 0
Merged-by: 's avatarMichael Niedermayer <michael@niedermayer.cc>
parents fa7defc8 2a187a07
......@@ -776,6 +776,8 @@ static int asf_read_stream_properties(AVFormatContext *s, const GUIDParseTable *
asf_st->span = span;
asf_st->virtual_pkt_len = avio_rl16(pb);
asf_st->virtual_chunk_len = avio_rl16(pb);
if (!asf_st->virtual_chunk_len || !asf_st->virtual_pkt_len)
return AVERROR_INVALIDDATA;
avio_skip(pb, err_data_len - 5);
} else
avio_skip(pb, err_data_len - 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