rtsp: Fix memory leaks in the gst_rtsp_url_decode_path_components() unit tests

This commit is contained in:
Sebastian Dröge 2010-12-19 09:53:08 +01:00
parent c23c706dce
commit 3e35df72b6

View 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);
}