Changeset 82982 in webkit


Ignore:
Timestamp:
Apr 5, 2011 2:25:40 PM (13 years ago)
Author:
andersca@apple.com
Message:

2011-04-05 Anders Carlsson <andersca@apple.com>

Reviewed by Darin Adler.

Assertion failure when navigating quickly between file URLs
https://bugs.webkit.org/show_bug.cgi?id=57884
<rdar://problem/9080559>

Remove bogus assertion. The pending provisional sandbox extension can be
non-null if the current provisional load fails because we're about to load a new
page that also has a sandbox extension.

  • WebProcess/WebPage/WebPage.cpp: (WebKit::WebPage::SandboxExtensionTracker::didFailProvisionalLoad):
Location:
trunk/Source/WebKit2
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit2/ChangeLog

    r82980 r82982  
     12011-04-05  Anders Carlsson  <andersca@apple.com>
     2
     3        Reviewed by Darin Adler.
     4
     5        Assertion failure when navigating quickly between file URLs
     6        https://bugs.webkit.org/show_bug.cgi?id=57884
     7        <rdar://problem/9080559>
     8
     9        Remove bogus assertion. The pending provisional sandbox extension can be
     10        non-null if the current provisional load fails because we're about to load a new
     11        page that also has a sandbox extension.
     12
     13        * WebProcess/WebPage/WebPage.cpp:
     14        (WebKit::WebPage::SandboxExtensionTracker::didFailProvisionalLoad):
     15
    1162011-04-05  Anders Carlsson  <andersca@apple.com>
    217
  • trunk/Source/WebKit2/WebProcess/WebPage/WebPage.cpp

    r82966 r82982  
    19661966        return;
    19671967
    1968     ASSERT(!m_pendingProvisionalSandboxExtension);
    19691968    if (!m_provisionalSandboxExtension)
    19701969        return;
Note: See TracChangeset for help on using the changeset viewer.