0
0
mirror of https://github.com/mpv-player/mpv.git synced 2024-09-20 20:03:10 +02:00

demux_mkv: fix minor memory leak

This commit is contained in:
wm4 2012-08-29 13:15:39 +02:00
parent 5984d702c6
commit fbc424ef35

View File

@ -884,6 +884,7 @@ static int demux_mkv_read_tags(demuxer_t *demuxer)
demux_info_add_bstr(demuxer, tag.simple_tag[j].tag_name, tag.simple_tag[j].tag_string);
}
talloc_free(parse_ctx.talloc_ctx);
return 0;
}