From 8f81e046831b89722734e0b4f91cfc9bb3ce93c3 Mon Sep 17 00:00:00 2001 From: Vineeth TM Date: Wed, 15 Jul 2015 10:50:46 +0900 Subject: [PATCH] playback-test: fix tag list leak tags are being leaked while updating the streams in playback-test https://bugzilla.gnome.org/show_bug.cgi?id=752397 --- tests/examples/playback/playback-test.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/examples/playback/playback-test.c b/tests/examples/playback/playback-test.c index c197da7bde..74c04e2aaf 100644 --- a/tests/examples/playback/playback-test.c +++ b/tests/examples/playback/playback-test.c @@ -1180,6 +1180,7 @@ update_streams (PlaybackApp * app) str = gst_tag_list_to_string (tags); g_print ("video %d: %s\n", i, str); g_free (str); + gst_tag_list_unref (tags); } /* find good name for the label */ name = g_strdup_printf ("video %d", i + 1); @@ -1199,6 +1200,7 @@ update_streams (PlaybackApp * app) str = gst_tag_list_to_string (tags); g_print ("audio %d: %s\n", i, str); g_free (str); + gst_tag_list_unref (tags); } /* find good name for the label */ name = g_strdup_printf ("audio %d", i + 1); @@ -1228,6 +1230,7 @@ update_streams (PlaybackApp * app) if (value && G_VALUE_HOLDS_STRING (value)) { name = g_strdup_printf ("text %s", g_value_get_string (value)); } + gst_tag_list_unref (tags); } /* find good name for the label if we didn't use a tag */ if (name == NULL)