diff options
author | Benjamin Otte <otte@gnome.org> | 2004-02-03 22:51:34 +0000 |
---|---|---|
committer | Benjamin Otte <otte@gnome.org> | 2004-02-03 22:51:34 +0000 |
commit | aefa946809ccd3b996953447199f0ea8c34a48bd (patch) | |
tree | fe77ff71ce117f0324c5d084617296976dbb81b4 | |
parent | aacfb9b993cd1668b564bdcd55eabcc6967ddbb8 (diff) |
ext/gdk_pixbuf/gstgdkpixbuf.c: more memleak fixage
Original commit message from CVS:
2004-02-03 Benjamin Otte <in7y118@public.uni-hamburg.de>
* ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_type_find):
more memleak fixage
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | ext/gdk_pixbuf/gstgdkpixbuf.c | 7 |
2 files changed, 10 insertions, 2 deletions
@@ -1,5 +1,10 @@ 2004-02-03 Benjamin Otte <in7y118@public.uni-hamburg.de> + * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_type_find): + more memleak fixage + +2004-02-03 Benjamin Otte <in7y118@public.uni-hamburg.de> + * ext/gdk_pixbuf/gstgdkpixbuf.c: (plugin_init): * gst/typefind/gsttypefindfunctions.c: fix memleaks shown by gst-typefind diff --git a/ext/gdk_pixbuf/gstgdkpixbuf.c b/ext/gdk_pixbuf/gstgdkpixbuf.c index ca1e36b9..864b54f3 100644 --- a/ext/gdk_pixbuf/gstgdkpixbuf.c +++ b/ext/gdk_pixbuf/gstgdkpixbuf.c @@ -413,10 +413,13 @@ gst_gdk_pixbuf_type_find (GstTypeFind *tf, gpointer ignore) format = gdk_pixbuf_loader_get_format (pixbuf_loader); if (format != NULL) { + GstCaps *caps; gchar **mlist = gdk_pixbuf_format_get_mime_types(format); - gst_type_find_suggest (tf, GST_TYPE_FIND_MINIMUM, - gst_caps_new_simple (mlist[0], NULL)); + caps = gst_caps_new_simple (mlist[0], NULL); + gst_type_find_suggest (tf, GST_TYPE_FIND_MINIMUM, caps); + gst_caps_free (caps); + g_strfreev (mlist); } gdk_pixbuf_loader_close (pixbuf_loader, NULL); |