⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 187323 in webkit


Ignore:
Timestamp:
Jul 24, 2015, 12:54:40 AM (11 years ago)
Author:
matthew_hanson@apple.com
Message:

Merge r187248. rdar://problem/21949735

Location:
branches/safari-601.1-branch
Files:
2 added
3 edited

Legend:

Unmodified
Added
Removed
  • branches/safari-601.1-branch/LayoutTests/ChangeLog

    r187313 r187323  
     12015-07-24  Matthew Hanson  <matthew_hanson@apple.com>
     2
     3        Merge r187248. rdar://problem/21949735
     4
     5    2015-07-23  Brady Eidson  <beidson@apple.com>
     6
     7            Crash in WebPlatformStrategies::createPingHandle - Deref a null NetworkingContext.
     8            <rdar://problem/21949735> and https://bugs.webkit.org/show_bug.cgi?id=147227
     9
     10            Reviewed by Alexey Proskuryakov.
     11
     12            * http/tests/security/contentSecurityPolicy/user-style-sheet-font-crasher-expected.txt: Added.
     13            * http/tests/security/contentSecurityPolicy/user-style-sheet-font-crasher.html: Added.
     14
    1152015-07-24  Matthew Hanson  <matthew_hanson@apple.com>
    216
  • branches/safari-601.1-branch/Source/WebKit2/ChangeLog

    r187320 r187323  
     12015-07-24  Matthew Hanson  <matthew_hanson@apple.com>
     2
     3        Merge r187248. rdar://problem/21949735
     4
     5    2015-07-23  Brady Eidson  <beidson@apple.com>
     6
     7            Crash in WebPlatformStrategies::createPingHandle - Deref a null NetworkingContext.
     8            <rdar://problem/21949735> and https://bugs.webkit.org/show_bug.cgi?id=147227
     9
     10            Reviewed by Alexey Proskuryakov.
     11
     12            * WebProcess/WebCoreSupport/WebPlatformStrategies.cpp:
     13            (WebKit::WebPlatformStrategies::createPingHandle): Skip it if there's a null NetworkingContext.
     14
    1152015-07-24  Matthew Hanson  <matthew_hanson@apple.com>
    216
  • branches/safari-601.1-branch/Source/WebKit2/WebProcess/WebCoreSupport/WebPlatformStrategies.cpp

    r186530 r187323  
    252252void WebPlatformStrategies::createPingHandle(NetworkingContext* networkingContext, ResourceRequest& request, bool shouldUseCredentialStorage)
    253253{
     254    // It's possible that call to createPingHandle might be made during initial empty Document creation before a NetworkingContext exists.
     255    // It is not clear that we should send ping loads during that process anyways.
     256    if (!networkingContext)
     257        return;
     258
    254259    auto& webProcess = WebProcess::singleton();
    255260    if (!webProcess.usesNetworkProcess()) {
Note: See TracChangeset for help on using the changeset viewer.