diff options
author | Sebastian Dröge <sebastian@centricular.com> | 2014-02-10 16:33:35 +0100 |
---|---|---|
committer | Sebastian Dröge <sebastian@centricular.com> | 2014-02-10 18:48:15 +0100 |
commit | a400d6172cb760a3df82be8f8ac10daaecf5aaf9 (patch) | |
tree | 4a6a3178d2f20a6c1befffa9da7be28ed703fae5 | |
parent | 3a59aced0a3a92263f020d47853a207e57a01bc8 (diff) | |
download | gstreamer-plugins-base-a400d6172cb760a3df82be8f8ac10daaecf5aaf9.tar.gz |
playbin: Fix memory leak in unit test
-rw-r--r-- | tests/check/elements/playbin-complex.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/check/elements/playbin-complex.c b/tests/check/elements/playbin-complex.c index 56a219dc1..706cb47a6 100644 --- a/tests/check/elements/playbin-complex.c +++ b/tests/check/elements/playbin-complex.c @@ -845,6 +845,7 @@ GST_START_TEST (test_autoplug_decoder_sink_combination) g_free (path); playbin = create_playbin (uri, FALSE); + g_free (uri); asink = gst_element_factory_make ("fakesink", NULL); g_object_set (asink, "sync", TRUE, NULL); |