зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1184249 - Remove warning if rootContent is null in nsEditorSpellCheck::UpdateCurrentDictionary. r=ehsan
This commit is contained in:
Родитель
6603d2cd75
Коммит
c66df7edf8
|
@ -712,7 +712,10 @@ nsEditorSpellCheck::UpdateCurrentDictionary(nsIEditorSpellCheckCallback* aCallba
|
|||
rootContent = do_QueryInterface(parentDoc->GetDocumentElement());
|
||||
}
|
||||
}
|
||||
NS_ENSURE_TRUE(rootContent, NS_ERROR_FAILURE);
|
||||
|
||||
if (!rootContent) {
|
||||
return NS_ERROR_FAILURE;
|
||||
}
|
||||
|
||||
nsRefPtr<DictionaryFetcher> fetcher =
|
||||
new DictionaryFetcher(this, aCallback, mDictionaryFetcherGroup);
|
||||
|
|
Загрузка…
Ссылка в новой задаче