From 5910c2f938e32978086475897b1213293d652112 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tim-Philipp=20M=C3=BCller?= Date: Mon, 20 Jun 2005 11:32:14 +0000 Subject: [PATCH] gst/gsturi.c: Fix potential endless loop. Original commit message from CVS: * gst/gsturi.c: (gst_element_make_from_uri): Fix potential endless loop. --- ChangeLog | 5 +++++ gst/gsturi.c | 1 + 2 files changed, 6 insertions(+) diff --git a/ChangeLog b/ChangeLog index ece80b1e4c..1283ea8f66 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2005-06-20 Tim-Philipp Müller + + * gst/gsturi.c: (gst_element_make_from_uri): + Fix potential endless loop. + 2005-06-19 Thomas Vander Stichele * check/Makefile.am: diff --git a/gst/gsturi.c b/gst/gsturi.c index fce5e454dc..6d75f3776e 100644 --- a/gst/gsturi.c +++ b/gst/gsturi.c @@ -488,6 +488,7 @@ gst_element_make_from_uri (const GstURIType type, const gchar * uri, gst_object_unref (GST_OBJECT (ret)); ret = NULL; } + walk = walk->next; } g_list_free (possibilities);