From b603027de797e7e2b5afaf01afd369db2178ce7f Mon Sep 17 00:00:00 2001 From: Sebastian Dröge Date: Mon, 11 Feb 2008 13:48:03 +0000 Subject: ext/gconf/gconf.c: Use and unset the GError when pipeline creation fails instead of simply leaking it. Fixes bug #515... Original commit message from CVS: * ext/gconf/gconf.c: (gst_gconf_render_bin_with_default): Use and unset the GError when pipeline creation fails instead of simply leaking it. Fixes bug #515704. --- ext/gconf/gconf.c | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'ext') diff --git a/ext/gconf/gconf.c b/ext/gconf/gconf.c index 2bda0669..e7214e2d 100644 --- a/ext/gconf/gconf.c +++ b/ext/gconf/gconf.c @@ -180,6 +180,14 @@ gst_gconf_render_bin_with_default (const gchar * bin, ret = gst_parse_bin_from_description (bin, TRUE, &err); if (ret == NULL || err != NULL) { + if (err) { + GST_DEBUG ("Could not create audio sink from GConf settings: %s", + err->message); + g_error_free (err); + } else { + GST_DEBUG ("Could not create audio sink from GConf settings"); + } + ret = gst_element_factory_make (default_sink, NULL); if (!ret) -- cgit