Bug 1184249 - Remove warning if rootContent is null in nsEditorSpellCheck::UpdateCurrentDictionary. r=ehsan

This commit is contained in:
Eric Rahm 2015-07-22 09:24:59 -07:00
Родитель 6603d2cd75
Коммит c66df7edf8
1 изменённых файлов: 4 добавлений и 1 удалений

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

@ -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);