projects
/
platform
/
upstream
/
gst-plugins-bad.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
29b44a5
)
resindvd: Fix a leak of the DVD title string
author
Jan Schmidt
<thaytan@noraisin.net>
Thu, 14 May 2009 07:42:24 +0000
(08:42 +0100)
committer
Jan Schmidt
<thaytan@noraisin.net>
Thu, 14 May 2009 10:28:14 +0000
(11:28 +0100)
ext/resindvd/resindvdsrc.c
patch
|
blob
|
history
diff --git
a/ext/resindvd/resindvdsrc.c
b/ext/resindvd/resindvdsrc.c
index
15a2408
..
37fc9da
100644
(file)
--- 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);
}
}