Changeset 182133 in webkit


Ignore:
Timestamp:
Mar 29, 2015, 9:17:45 PM (10 years ago)
Author:
Simon Fraser
Message:

Fix iOS scrollperf crash after a web process crash
https://bugs.webkit.org/show_bug.cgi?id=143110

Reviewed by Dean Jackson.

When we destroy the drawing area after a web process crash, we also need to destroy
the scrollingPerformanceData which has a reference to the drawing area.

  • UIProcess/WebPageProxy.cpp:

(WebKit::WebPageProxy::resetState):

Location:
trunk/Source/WebKit2
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit2/ChangeLog

    r182132 r182133  
     12015-03-29  Simon Fraser  <simon.fraser@apple.com>
     2
     3        Fix iOS scrollperf crash after a web process crash
     4        https://bugs.webkit.org/show_bug.cgi?id=143110
     5
     6        Reviewed by Dean Jackson.
     7       
     8        When we destroy the drawing area after a web process crash, we also need to destroy
     9        the scrollingPerformanceData which has a reference to the drawing area.
     10
     11        * UIProcess/WebPageProxy.cpp:
     12        (WebKit::WebPageProxy::resetState):
     13
    1142015-03-29  Simon Fraser  <simon.fraser@apple.com>
    215
  • trunk/Source/WebKit2/UIProcess/WebPageProxy.cpp

    r182084 r182133  
    46574657{
    46584658    m_mainFrame = nullptr;
     4659#if PLATFORM(COCOA)
     4660    m_scrollingPerformanceData = nullptr;
     4661#endif
    46594662    m_drawingArea = nullptr;
    46604663
Note: See TracChangeset for help on using the changeset viewer.