From: Tim-Philipp Müller Date: Sat, 5 Jun 2010 17:05:40 +0000 (+0100) Subject: tests: fix memory leak in unit test X-Git-Tag: 1.19.3~511^2~8401 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=3c39d998471075438f1675a7bfe6cfca466d574d;p=platform%2Fupstream%2Fgstreamer.git tests: fix memory leak in unit test --- diff --git a/tests/check/gst/typefindfunctions.c b/tests/check/gst/typefindfunctions.c index 04c873e..810d283 100644 --- a/tests/check/gst/typefindfunctions.c +++ b/tests/check/gst/typefindfunctions.c @@ -137,6 +137,7 @@ GST_START_TEST (test_jpeg_not_ac3) gst_buffer_unref (buf); gst_caps_unref (caps); g_free (data); + g_free (path); } GST_END_TEST;