Handle image embeds with a null URI. Bug 402320, r+sr=jst

git-svn-id: svn://10.0.0.236/trunk@238911 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
bzbarsky%mit.edu 2007-11-07 17:25:57 +00:00
parent febca8c204
commit 7fc4c90002

View File

@ -1014,13 +1014,21 @@ nsObjectLoadingContent::LoadObject(nsIURI* aURI,
switch (newType) {
case eType_Image:
// Don't notify, because we will take care of that ourselves.
rv = LoadImage(aURI, aForceLoad, PR_FALSE);
if (aURI) {
rv = LoadImage(aURI, aForceLoad, PR_FALSE);
} else {
rv = NS_ERROR_NOT_AVAILABLE;
}
break;
case eType_Plugin:
rv = TryInstantiate(mContentType, mURI);
break;
case eType_Document:
rv = mFrameLoader->LoadURI(aURI);
if (aURI) {
rv = mFrameLoader->LoadURI(aURI);
} else {
rv = NS_ERROR_NOT_AVAILABLE;
}
break;
case eType_Loading:
NS_NOTREACHED("Should not have a loading type here!");