From c58d4f54d6c23b19aa5832b8fe418604b3da79fc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tim-Philipp=20M=C3=BCller?= Date: Thu, 1 Dec 2011 01:07:26 +0000 Subject: [PATCH] tests: fix memory leak in basetime test --- tests/check/pipelines/basetime.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/check/pipelines/basetime.c b/tests/check/pipelines/basetime.c index 6f7ff717dd..b943a6846b 100644 --- a/tests/check/pipelines/basetime.c +++ b/tests/check/pipelines/basetime.c @@ -115,6 +115,8 @@ GST_START_TEST (test_basetime_calculation) gst_object_unref (pad); gst_element_set_state (p1, GST_STATE_NULL); gst_object_unref (p1); + + g_main_loop_unref (loop); } GST_END_TEST;