summaryrefslogtreecommitdiffstats
path: root/gst/matroska
diff options
context:
space:
mode:
authorStefan Kost <ensonic@users.sf.net>2009-03-31 17:16:04 +0300
committerStefan Kost <ensonic@users.sf.net>2009-03-31 17:16:04 +0300
commit605ded52927528bada4a79844ca8d2316aae98eb (patch)
tree5b8abfae685615106e345ebb020f1fde300feebe /gst/matroska
parent5ac6b84475657f7e76bb092273e6daed0c26d0dd (diff)
matroska: don't leak serialized values when writing tags
Diffstat (limited to 'gst/matroska')
-rw-r--r--gst/matroska/matroska-mux.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/gst/matroska/matroska-mux.c b/gst/matroska/matroska-mux.c
index bc5af3d4..87ad4772 100644
--- a/gst/matroska/matroska-mux.c
+++ b/gst/matroska/matroska-mux.c
@@ -1846,6 +1846,7 @@ gst_matroska_mux_write_simple_tag (const GstTagList * list, const gchar * tag,
gst_ebml_write_ascii (ebml, GST_MATROSKA_ID_TAGNAME, tagname_mkv);
gst_ebml_write_utf8 (ebml, GST_MATROSKA_ID_TAGSTRING, dest);
gst_ebml_write_master_finish (ebml, simpletag_master);
+ g_free (dest);
} else {
GST_WARNING ("Can't transform tag '%s' to string", tagname_mkv);
}