зеркало из https://github.com/mozilla/gecko-dev.git
Fix a potential null-deref in TabChild::HandlePossibleViewportChange. (bug 1156156, r=kats)
--HG-- extra : rebase_source : 8dd897458121121c77442901fb728a53fc912ef8
This commit is contained in:
Родитель
c2c72dfc25
Коммит
e6b4160be1
|
@ -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;
|
||||
|
|
Загрузка…
Ссылка в новой задаче