From 3dd7e1f3c4a5216863118dd718f8841ae6eb5787 Mon Sep 17 00:00:00 2001 From: Mark Nauwelaerts Date: Thu, 6 Sep 2012 15:04:33 +0200 Subject: [PATCH] tests: playbin: do not leak uri strings --- tests/check/elements/playbin.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/check/elements/playbin.c b/tests/check/elements/playbin.c index 26cf665..f0541b2 100644 --- a/tests/check/elements/playbin.c +++ b/tests/check/elements/playbin.c @@ -55,6 +55,7 @@ GST_START_TEST (test_uri) g_object_get (playbin, "uri", &uri, NULL); fail_unless_equals_string (uri, "redvideo://"); + g_free (uri); g_object_get (playbin, "current-uri", &uri, NULL); fail_unless_equals_string (uri, NULL); @@ -68,6 +69,7 @@ GST_START_TEST (test_uri) fail_unless_equals_string (uri, NULL); g_object_get (playbin, "current-uri", &uri, NULL); fail_unless_equals_string (uri, "redvideo://"); + g_free (uri); gst_element_set_state (playbin, GST_STATE_NULL); gst_object_unref (playbin); -- 2.7.4