gst/gsturi.c: Fix potential endless loop.
authorTim-Philipp Müller <tim@centricular.net>
Mon, 20 Jun 2005 11:32:14 +0000 (11:32 +0000)
committerTim-Philipp Müller <tim@centricular.net>
Mon, 20 Jun 2005 11:32:14 +0000 (11:32 +0000)
Original commit message from CVS:
* gst/gsturi.c: (gst_element_make_from_uri):
Fix potential endless loop.

ChangeLog
gst/gsturi.c

index ece80b1..1283ea8 100644 (file)
--- 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:
index fce5e45..6d75f37 100644 (file)
@@ -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);