diff --git a/dom/base/nsObjectLoadingContent.cpp b/dom/base/nsObjectLoadingContent.cpp index aa179eba88..272d3c1de6 100644 --- a/dom/base/nsObjectLoadingContent.cpp +++ b/dom/base/nsObjectLoadingContent.cpp @@ -2328,17 +2328,13 @@ nsObjectLoadingContent::LoadObject(bool aNotify, // "about", "blob", "data", "file", "http", "https". // // Some accessibility tests use our internal "chrome" scheme. - if (mType != eType_Null) { - nsCOMPtr tempURI = mURI; - nsCOMPtr nestedURI = do_QueryInterface(tempURI); + if (mType != eType_Null && mURI) { bool isCandidate = false; - if (nestedURI) { - for (const auto& candidate : - {"about", "blob", "chrome", "data", "file", "http", "https"}) { - rv = tempURI->SchemeIs(candidate, &isCandidate); - if (NS_SUCCEEDED(rv) && isCandidate) { - break; - } + for (const auto& candidate : + {"about", "blob", "chrome", "data", "file", "http", "https"}) { + rv = mURI->SchemeIs(candidate, &isCandidate); + if (NS_SUCCEEDED(rv) && isCandidate) { + break; } } if (!isCandidate) {