From: Vineeth TM Date: Tue, 17 Nov 2015 00:17:58 +0000 (+0900) Subject: debugutils: Fix string memory leak X-Git-Tag: 1.10.4~616 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=61a8c946acb077959dfec78fc6393a5bea17a260;p=platform%2Fupstream%2Fgstreamer.git debugutils: Fix string memory leak https://bugzilla.gnome.org/show_bug.cgi?id=758207 --- diff --git a/gst/gstdebugutils.c b/gst/gstdebugutils.c index b55d3aa..8b4411d 100644 --- a/gst/gstdebugutils.c +++ b/gst/gstdebugutils.c @@ -244,6 +244,7 @@ debug_dump_pad (GstPad * pad, const gchar * color_name, (param_name ? param_name : ""), style_name); } + g_free (param_name); g_free (pad_name); }