diff options
author | Patricia Muscalu <patricia@axis.com> | 2017-11-23 18:51:21 +0100 |
---|---|---|
committer | Edward Hervey <bilboed@bilboed.com> | 2017-11-24 10:52:36 +0100 |
commit | de930f2e4d74f1cbf1679aa03ff6f603a5eff5ef (patch) | |
tree | febda7b28ffad574372270c7cbc9e2b24aedcca5 | |
parent | 132e00adfd0333be082594bf7e64d3b96d95d263 (diff) |
check/media: Fix thread pool leak.
Change-Id: I0f92b1caca0ee518ae64a7dacfbd28a214c3eea1
https://bugzilla.gnome.org/show_bug.cgi?id=790674
-rw-r--r-- | tests/check/gst/media.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/check/gst/media.c b/tests/check/gst/media.c index 99f19b0..e143916 100644 --- a/tests/check/gst/media.c +++ b/tests/check/gst/media.c @@ -253,6 +253,8 @@ test_prepare_reusable (const gchar * launch_line) g_object_unref (media); gst_rtsp_url_free (url); g_object_unref (factory); + + g_object_unref (pool); } GST_START_TEST (test_media_reusable) |