Changeset 71129 in webkit


Ignore:
Timestamp:
Nov 2, 2010 10:51:16 AM (13 years ago)
Author:
andersca@apple.com
Message:

Assertion hit in WebProcessProxy::~WebProcessProxy()
https://bugs.webkit.org/show_bug.cgi?id=48849
<rdar://problem/8617676>

Reviewed by John Sullivan.

It is perfectly valid for the page map to contain pages if the web process proxy
goes away, this can happen if the process crashes for example.

  • UIProcess/WebProcessProxy.cpp:

(WebKit::WebProcessProxy::~WebProcessProxy):
Remove the assertion.

Location:
trunk/WebKit2
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebKit2/ChangeLog

    r71128 r71129  
     12010-11-02  Anders Carlsson  <andersca@apple.com>
     2
     3        Reviewed by John Sullivan.
     4
     5        Assertion hit in WebProcessProxy::~WebProcessProxy()
     6        https://bugs.webkit.org/show_bug.cgi?id=48849
     7        <rdar://problem/8617676>
     8
     9        It is perfectly valid for the page map to contain pages if the web process proxy
     10        goes away, this can happen if the process crashes for example.
     11
     12        * UIProcess/WebProcessProxy.cpp:
     13        (WebKit::WebProcessProxy::~WebProcessProxy):
     14        Remove the assertion.
     15
    1162010-11-02  Christian Sejersen  <christian.webkit@gmail.com>
    217
  • trunk/WebKit2/UIProcess/WebProcessProxy.cpp

    r71127 r71129  
    6464WebProcessProxy::~WebProcessProxy()
    6565{
    66     ASSERT(m_pageMap.isEmpty());
    67 
    6866    if (m_connection)
    6967        m_connection->invalidate();
Note: See TracChangeset for help on using the changeset viewer.