diff options
author | Jan Schmidt <thaytan@noraisin.net> | 2009-05-14 08:42:24 +0100 |
---|---|---|
committer | Jan Schmidt <thaytan@noraisin.net> | 2009-05-14 11:28:14 +0100 |
commit | d9fef92ea03961f2bf7a1fc75c99223ecf35f168 (patch) | |
tree | ebe3d052d230b1aa282806d91676836ca6b6ceca /ext/resindvd | |
parent | 29b44a5e2f058689ba7ecec00b5355c8cf0dc642 (diff) | |
download | gst-plugins-bad-d9fef92ea03961f2bf7a1fc75c99223ecf35f168.tar.gz gst-plugins-bad-d9fef92ea03961f2bf7a1fc75c99223ecf35f168.tar.bz2 gst-plugins-bad-d9fef92ea03961f2bf7a1fc75c99223ecf35f168.zip |
resindvd: Fix a leak of the DVD title string
Diffstat (limited to 'ext/resindvd')
-rw-r--r-- | ext/resindvd/resindvdsrc.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ext/resindvd/resindvdsrc.c b/ext/resindvd/resindvdsrc.c index 15a2408d..37fc9da9 100644 --- a/ext/resindvd/resindvdsrc.c +++ b/ext/resindvd/resindvdsrc.c @@ -842,6 +842,7 @@ update_title_info (resinDvdSrc * src) GstTagList *tags = gst_tag_list_new (); gst_tag_list_add (tags, GST_TAG_MERGE_REPLACE, GST_TAG_TITLE, title_str, NULL); + g_free (title_str); gst_element_found_tags (GST_ELEMENT_CAST (src), tags); } } |