Skip to content
Snippets Groups Projects
Commit c222f194 authored by Vineeth T M's avatar Vineeth T M Committed by Tim-Philipp Müller
Browse files

rmdemux: fix tag memory leak

tags is not being freed after being merged to the
pending_tags.

https://bugzilla.gnome.org/show_bug.cgi?id=752404
parent 981a3542
No related branches found
No related tags found
No related merge requests found
...@@ -1926,6 +1926,7 @@ gst_rmdemux_parse_cont (GstRMDemux * rmdemux, const guint8 * data, int length) ...@@ -1926,6 +1926,7 @@ gst_rmdemux_parse_cont (GstRMDemux * rmdemux, const guint8 * data, int length)
rmdemux->pending_tags = rmdemux->pending_tags =
gst_tag_list_merge (rmdemux->pending_tags, tags, GST_TAG_MERGE_APPEND); gst_tag_list_merge (rmdemux->pending_tags, tags, GST_TAG_MERGE_APPEND);
gst_tag_list_unref (tags);
} }
static void static void
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment