From 6335a074e2078ad7e926338df849e4335378c6cc Mon Sep 17 00:00:00 2001 From: Jimmy Ohn Date: Thu, 6 Oct 2016 16:16:30 +0900 Subject: [PATCH] opusdec: Fix memory leak in test code gst_caps_to_string function returned allocated memory. So, It should be free using g_free function. https://bugzilla.gnome.org/show_bug.cgi?id=772500 --- tests/check/elements/opus.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/tests/check/elements/opus.c b/tests/check/elements/opus.c index 3678ed167d..88f87aaf28 100644 --- a/tests/check/elements/opus.c +++ b/tests/check/elements/opus.c @@ -342,6 +342,7 @@ run_getcaps_check (GstCaps * filter, GstCaps * downstream_caps, GstElement *capsfilter; GstPad *sinkpad; GstCaps *result; + gchar *caps_str; opusdec = gst_element_factory_make ("opusdec", NULL); capsfilter = gst_element_factory_make ("capsfilter", NULL); @@ -352,8 +353,9 @@ run_getcaps_check (GstCaps * filter, GstCaps * downstream_caps, g_object_set (capsfilter, "caps", downstream_caps, NULL); result = gst_pad_query_caps (sinkpad, filter); result = remove_extra_caps_fields (result); + caps_str = gst_caps_to_string (result); fail_unless (gst_caps_is_equal (expected_result, result), - "Unexpected output caps: %s", gst_caps_to_string (result)); + "Unexpected output caps: %s", caps_str); if (filter) gst_caps_unref (filter); @@ -364,6 +366,7 @@ run_getcaps_check (GstCaps * filter, GstCaps * downstream_caps, gst_object_unref (sinkpad); gst_object_unref (opusdec); gst_object_unref (capsfilter); + g_free (caps_str); } static void