зеркало из https://github.com/mozilla/gecko-dev.git
Bug 940751 - Guard against potentially dereferencing a null pointer. r=botond
This commit is contained in:
Родитель
ffff44f8da
Коммит
66161c5f7c
|
@ -138,7 +138,7 @@ APZCCallbackHelper::GetScrollIdentifiers(const nsIContent* aContent,
|
|||
uint32_t* aPresShellIdOut,
|
||||
FrameMetrics::ViewID* aViewIdOut)
|
||||
{
|
||||
if (!nsLayoutUtils::FindIDFor(aContent, aViewIdOut)) {
|
||||
if (!aContent || !nsLayoutUtils::FindIDFor(aContent, aViewIdOut)) {
|
||||
return false;
|
||||
}
|
||||
nsCOMPtr<nsIDOMWindowUtils> utils = GetDOMWindowUtils(aContent);
|
||||
|
|
Загрузка…
Ссылка в новой задаче