Allow NULL to be a valid value for factory->extensions.

Original commit message from CVS:
Allow NULL to be a valid value for factory->extensions.
This commit is contained in:
David Schleef 2003-10-29 23:10:49 +00:00
parent 03f8740304
commit 16fccf325d
2 changed files with 7 additions and 4 deletions

View file

@ -159,7 +159,8 @@ gst_type_find_factory_get_caps (const GstTypeFindFactory *factory)
*
* Gets the extensions associated with a typefind factory. The returned
* array should not be changed. If you need to change stuff in it, you should
* copy it using g_stdupv().
* copy it using g_stdupv(). This function may return NULL to indicate
* a 0-length list.
*
* Returns: a NULL-terminated array of extensions associated with this factory
*/

View file

@ -1490,11 +1490,13 @@ gst_xml_registry_save_feature (GstXMLRegistry *xmlregistry, GstPluginFeature *fe
gst_xml_registry_save_caps (xmlregistry, factory->caps);
CLASS (xmlregistry)->save_func (xmlregistry, "</caps>\n");
} */
if (factory->extensions) {
while (factory->extensions[i]) {
PUT_ESCAPED ("extension", factory->extensions[i]);
i++;
}
}
}
else if (GST_IS_SCHEDULER_FACTORY (feature)) {
PUT_ESCAPED ("longdesc", GST_SCHEDULER_FACTORY (feature)->longdesc);
}