gst/gsturi.c: Fix potential endless loop.

Original commit message from CVS:
* gst/gsturi.c: (gst_element_make_from_uri):
Fix potential endless loop.
This commit is contained in:
Tim-Philipp Müller 2005-06-20 11:32:14 +00:00
parent f6979cd605
commit 5910c2f938
2 changed files with 6 additions and 0 deletions

View file

@ -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> 2005-06-19 Thomas Vander Stichele <thomas at apestaart dot org>
* check/Makefile.am: * check/Makefile.am:

View file

@ -488,6 +488,7 @@ gst_element_make_from_uri (const GstURIType type, const gchar * uri,
gst_object_unref (GST_OBJECT (ret)); gst_object_unref (GST_OBJECT (ret));
ret = NULL; ret = NULL;
} }
walk = walk->next;
} }
g_list_free (possibilities); g_list_free (possibilities);