Bug 1244798: Check for null before proceeding. r=smaug

This commit is contained in:
Kyle Huey 2016-02-03 13:30:46 -08:00
Родитель 6d8924b5e6
Коммит 5318631b96
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -493,7 +493,7 @@ nsTypeAheadFind::FindItNow(nsIPresShell *aPresShell, bool aIsLinksOnly,
if (fm) {
nsCOMPtr<mozIDOMWindowProxy> focusedWindow;
nsresult rv = fm->GetFocusedWindow(getter_AddRefs(focusedWindow));
if (NS_SUCCEEDED(rv)) {
if (NS_SUCCEEDED(rv) && focusedWindow) {
auto* fwPI = nsPIDOMWindowOuter::From(focusedWindow);
nsCOMPtr<nsIDocShellTreeItem> fwTreeItem
(do_QueryInterface(fwPI->GetDocShell(), &rv));