[Webkit-unassigned] [Bug 186393] Crash under Page::scrollingCoordinator()
bugzilla-daemon at webkit.org
bugzilla-daemon at webkit.org
Thu Jun 7 06:49:20 PDT 2018
https://bugs.webkit.org/show_bug.cgi?id=186393
--- Comment #2 from Antoine Quint <graouts at apple.com> ---
ScrollingCoordinator* Page::scrollingCoordinator()
{
if (!m_scrollingCoordinator && m_settings->scrollingCoordinatorEnabled()) {
m_scrollingCoordinator = chrome().client().createScrollingCoordinator(*this);
if (!m_scrollingCoordinator)
m_scrollingCoordinator = ScrollingCoordinator::create(this);
}
return m_scrollingCoordinator.get();
}
I suppose we could crash if either m_settings is nullptr or if m_scrollingCoordinator is nullptr and m_settings->scrollingCoordinatorEnabled() is false.
--
You are receiving this mail because:
You are the assignee for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.webkit.org/pipermail/webkit-unassigned/attachments/20180607/3d060cb0/attachment.html>
More information about the webkit-unassigned
mailing list