Don't stop looking for converters just because the first one

failed.  This will be necessary for plugin converters.


git-svn-id: svn://10.0.0.236/trunk@21037 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
ebina%netscape.com
1999-02-17 23:18:13 +00:00
parent e8b5c1f3f2
commit 1501c1cf35

View File

@@ -235,10 +235,15 @@ NET_StreamBuilder (FO_Present_Types format_out,
if(format_out == cs_ptr->format_out)
if(net_compare_mime_types(URL_s->content_type, cs_ptr->format_in))
{
NET_StreamClass *ret_str;
net_ConverterElement *elem = XP_ListPeekTopObject(cs_ptr->converter_stack);
PR_ASSERT(elem != (net_ConverterElement *)0);
return( (NET_StreamClass *) (*elem->converter) (format_out,
elem->data_obj, URL_s, context));
ret_str = (NET_StreamClass *) (*elem->converter) (format_out,
elem->data_obj, URL_s, context);
if (ret_str != NULL)
{
return(ret_str);
}
}
}