summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rw-r--r--gst/gsturi.c1
2 files changed, 6 insertions, 0 deletions
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 <tim at centricular dot net>
+
+ * gst/gsturi.c: (gst_element_make_from_uri):
+ Fix potential endless loop.
+
2005-06-19 Thomas Vander Stichele <thomas at apestaart dot org>
* 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);