Commit 988ddfea authored by Hendrik Leppkes's avatar Hendrik Leppkes

Merge commit 'cd4d9df2'

* commit 'cd4d9df2':
  asfdec: free AVDictionaries properly when closing the demuxer
Merged-by: 's avatarHendrik Leppkes <h.leppkes@gmail.com>
parents cf1ccfff cd4d9df2
......@@ -1453,10 +1453,12 @@ static int asf_read_close(AVFormatContext *s)
ASFContext *asf = s->priv_data;
int i;
for (i = 0; i < asf->nb_streams; i++) {
av_free_packet(&asf->asf_st[i]->pkt.avpkt);
av_freep(&asf->asf_st[i]);
for (i = 0; i < ASF_MAX_STREAMS; i++) {
av_dict_free(&asf->asf_sd[i].asf_met);
if (i < asf->nb_streams) {
av_free_packet(&asf->asf_st[i]->pkt.avpkt);
av_freep(&asf->asf_st[i]);
}
}
asf->nb_streams = 0;
......
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