rtsp: Fix memory leaks in the gst_rtsp_url_decode_path_components() unit tests
authorSebastian Dröge <sebastian.droege@collabora.co.uk>
Sun, 19 Dec 2010 08:53:08 +0000 (09:53 +0100)
committerSebastian Dröge <sebastian.droege@collabora.co.uk>
Sun, 19 Dec 2010 08:53:08 +0000 (09:53 +0100)
tests/check/libs/rtsp.c

index fa26eea..377f277 100644 (file)
@@ -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);
 }