Fix a potential null-deref in TabChild::HandlePossibleViewportChange. (bug 1156156, r=kats)

--HG--
extra : rebase_source : 8dd897458121121c77442901fb728a53fc912ef8
This commit is contained in:
David Anderson 2015-04-20 11:16:55 -04:00
Родитель c2c72dfc25
Коммит e6b4160be1
1 изменённых файлов: 3 добавлений и 0 удалений

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

@ -275,6 +275,9 @@ TabChildBase::HandlePossibleViewportChange(const ScreenIntSize& aOldScreenSize)
Stringify(aOldScreenSize).c_str(), Stringify(mInnerSize).c_str());
nsCOMPtr<nsIDocument> document(GetDocument());
if (!document) {
return false;
}
nsViewportInfo viewportInfo = nsContentUtils::GetViewportInfo(document, mInnerSize);
uint32_t presShellId = 0;