From 3e35df72b6209db88749d56633ebe6049da217eb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Dr=C3=B6ge?= Date: Sun, 19 Dec 2010 09:53:08 +0100 Subject: [PATCH] rtsp: Fix memory leaks in the gst_rtsp_url_decode_path_components() unit tests --- tests/check/libs/rtsp.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/check/libs/rtsp.c b/tests/check/libs/rtsp.c index fa26eead7a..377f277bf3 100644 --- a/tests/check/libs/rtsp.c +++ b/tests/check/libs/rtsp.c @@ -68,6 +68,7 @@ GST_START_TEST (test_rtsp_url_components_1) fail_unless (!strcmp (comps[1], "foo")); fail_unless (!strcmp (comps[2], "bar")); + g_strfreev (comps); gst_rtsp_url_free (url); } @@ -90,6 +91,7 @@ GST_START_TEST (test_rtsp_url_components_2) fail_unless (!strcmp (comps[1], "foo/bar")); fail_unless (!strcmp (comps[2], "qux baz")); + g_strfreev (comps); gst_rtsp_url_free (url); } @@ -112,6 +114,7 @@ GST_START_TEST (test_rtsp_url_components_3) fail_unless (!strcmp (comps[1], "foo%00bar")); fail_unless (!strcmp (comps[2], "qux baz")); + g_strfreev (comps); gst_rtsp_url_free (url); }