зеркало из https://github.com/mozilla/gecko-dev.git
Last part of fix for bug 118633 - null frame checks. r=jgaunt, sr=hewitt
This commit is contained in:
Родитель
bb13bf71ac
Коммит
ba57004bb5
|
@ -6034,6 +6034,8 @@ PresShell::HandleEventInternal(nsEvent* aEvent, nsIView *aView, PRUint32 aFlags,
|
|||
void* clientData;
|
||||
aView->GetClientData(clientData);
|
||||
nsIFrame* frame = (nsIFrame *)clientData;
|
||||
if (!frame)
|
||||
return NS_ERROR_FAILURE;
|
||||
return frame->HandleEvent(mPresContext, (nsGUIEvent*)aEvent, aStatus);
|
||||
}
|
||||
#endif
|
||||
|
|
|
@ -6034,6 +6034,8 @@ PresShell::HandleEventInternal(nsEvent* aEvent, nsIView *aView, PRUint32 aFlags,
|
|||
void* clientData;
|
||||
aView->GetClientData(clientData);
|
||||
nsIFrame* frame = (nsIFrame *)clientData;
|
||||
if (!frame)
|
||||
return NS_ERROR_FAILURE;
|
||||
return frame->HandleEvent(mPresContext, (nsGUIEvent*)aEvent, aStatus);
|
||||
}
|
||||
#endif
|
||||
|
|
Загрузка…
Ссылка в новой задаче