resindvd: Fix a leak of the DVD title string
authorJan Schmidt <thaytan@noraisin.net>
Thu, 14 May 2009 07:42:24 +0000 (08:42 +0100)
committerJan Schmidt <thaytan@noraisin.net>
Thu, 14 May 2009 10:28:14 +0000 (11:28 +0100)
ext/resindvd/resindvdsrc.c

index 15a2408..37fc9da 100644 (file)
@@ -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);
     }
   }