summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Kost <ensonic@users.sourceforge.net>2008-06-22 18:35:27 +0000
committerStefan Kost <ensonic@users.sourceforge.net>2008-06-22 18:35:27 +0000
commit540a3816e4024f809a7bc9c37a9f62344e6a8a7f (patch)
treeb5fa407567d96552c9d342a02fbf417adcd35eab
parentf43a3f6accbfacc59e3fed2fc7d824a4a576edad (diff)
tests/examples/seek/seek.c: Fix crasher when playing a parse-launch line the 2nd time.
Original commit message from CVS: * tests/examples/seek/seek.c: Fix crasher when playing a parse-launch line the 2nd time.
-rw-r--r--ChangeLog5
-rw-r--r--tests/examples/seek/seek.c4
2 files changed, 9 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 0b5d0e3d..c9ed0be4 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2008-06-22 Stefan Kost <ensonic@users.sf.net>
+
+ * tests/examples/seek/seek.c:
+ Fix crasher when playing a parse-launch line the 2nd time.
+
2008-06-21 Thomas Vander Stichele <thomas at apestaart dot org>
* tests/check/pipelines/oggmux.c:
diff --git a/tests/examples/seek/seek.c b/tests/examples/seek/seek.c
index 8addde2e..544efece 100644
--- a/tests/examples/seek/seek.c
+++ b/tests/examples/seek/seek.c
@@ -1498,6 +1498,10 @@ stop_cb (GtkButton * button, gpointer data)
g_list_free (seekable_elements);
seekable_elements = NULL;
+ g_list_free (seekable_pads);
+ seekable_pads = NULL;
+ g_list_free (rate_pads);
+ rate_pads = NULL;
pipeline = pipelines[pipeline_type].func (pipeline_spec);
g_assert (pipeline);