From 3919d13394334522b581fcd5119c1ae9ed21fc77 Mon Sep 17 00:00:00 2001 From: Thomas Vander Stichele Date: Sun, 18 Sep 2005 21:40:58 +0000 Subject: [PATCH] common/check.mak: use GST_PLUGIN settings for valgrind tests as well, so we're valgrinding the correct thing Original commit message from CVS: * common/check.mak: use GST_PLUGIN settings for valgrind tests as well, so we're valgrinding the correct thing * gst/gst.c: (init_post): plug another leak --- ChangeLog | 8 ++++++++ common | 2 +- gst/gst.c | 1 + 3 files changed, 10 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 74ff137093..fa8173ba68 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,11 @@ +2005-09-18 Thomas Vander Stichele + + * common/check.mak: + use GST_PLUGIN settings for valgrind tests as well, so we're + valgrinding the correct thing + * gst/gst.c: (init_post): + plug another leak + 2005-09-18 Thomas Vander Stichele * gst/gst.c: (init_post), (gst_deinit): diff --git a/common b/common index 97c0921b09..eac450a673 160000 --- a/common +++ b/common @@ -1 +1 @@ -Subproject commit 97c0921b09a10967c0777aee7fb73dfa3c1d4542 +Subproject commit eac450a673cd1d3a606fe75399d0cd1fcb1d0d7b diff --git a/gst/gst.c b/gst/gst.c index 4ff0b696e0..76ddfdfe49 100644 --- a/gst/gst.c +++ b/gst/gst.c @@ -719,6 +719,7 @@ init_post (void) for (i = 0; list[i]; i++) { gst_registry_scan_path (default_registry, list[i]); } + g_strfreev (list); } plugin_path = g_getenv ("GST_PLUGIN_PATH");