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 ece80b1e4c073056562b06237dde4c27f056516b..1283ea8f666747205b5eaa6775c7b8f33721843d 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 fce5e454dc0758ab8afd0f38f30e59d186a0092e..6d75f3776e3b9e5a33952a1e0543168d478acfc6 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);