364235 don't instantiate plugins for URLs with unknown schemes unless we also have a type specified r+sr=bz

This commit is contained in:
cbiesinger@gmx.at 2007-08-06 11:02:14 -07:00
Родитель d57035757f
Коммит 81e636b6ad
1 изменённых файлов: 7 добавлений и 0 удалений

Просмотреть файл

@ -314,6 +314,9 @@ IsPluginEnabledByExtension(nsIURI* uri, nsCString& mimeType)
nsCAutoString ext;
GetExtensionFromURI(uri, ext);
if (ext.IsEmpty())
return PR_FALSE;
nsCOMPtr<nsIPluginHost> host(do_GetService("@mozilla.org/plugin/host;1"));
const char* typeFromExt;
if (host &&
@ -1053,6 +1056,10 @@ nsObjectLoadingContent::LoadObject(nsIURI* aURI,
if (!CanHandleURI(aURI)) {
LOG(("OBJLC [%p]: can't handle URI\n", this));
if (aTypeHint.IsEmpty()) {
rv = NS_ERROR_NOT_AVAILABLE;
return NS_OK;
}
// E.g. mms://
mType = eType_Plugin;
if (aNotify)