From: Andy Wingo Date: Mon, 23 Feb 2009 14:24:00 +0000 (+0100) Subject: fix uri handler iteration in gst-inspect X-Git-Tag: RELEASE-0.10.23~165 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=dcc6ab2ccec69bba8f6652ae9a7ecd4ce377565c;p=platform%2Fupstream%2Fgstreamer.git fix uri handler iteration in gst-inspect * tools/gst-inspect.c (print_all_uri_handlers): Whoops, fix iteration. I'm stupid. --- diff --git a/tools/gst-inspect.c b/tools/gst-inspect.c index 0d9a658..227e5ed 100644 --- a/tools/gst-inspect.c +++ b/tools/gst-inspect.c @@ -1034,7 +1034,7 @@ print_all_uri_handlers (void) plugin->desc.name); for (f = features; f; f = f->next) { - GstPluginFeature *feature = GST_PLUGIN_FEATURE (features->data); + GstPluginFeature *feature = GST_PLUGIN_FEATURE (f->data); if (GST_IS_ELEMENT_FACTORY (feature)) { GstElementFactory *factory;