Changeset 187323 in webkit
- Timestamp:
- Jul 24, 2015, 12:54:40 AM (11 years ago)
- Location:
- branches/safari-601.1-branch
- Files:
-
- 2 added
- 3 edited
-
LayoutTests/ChangeLog (modified) (1 diff)
-
LayoutTests/http/tests/security/contentSecurityPolicy/user-style-sheet-font-crasher-expected.txt (added)
-
LayoutTests/http/tests/security/contentSecurityPolicy/user-style-sheet-font-crasher.html (added)
-
Source/WebKit2/ChangeLog (modified) (1 diff)
-
Source/WebKit2/WebProcess/WebCoreSupport/WebPlatformStrategies.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/safari-601.1-branch/LayoutTests/ChangeLog
r187313 r187323 1 2015-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 1 15 2015-07-24 Matthew Hanson <matthew_hanson@apple.com> 2 16 -
branches/safari-601.1-branch/Source/WebKit2/ChangeLog
r187320 r187323 1 2015-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 1 15 2015-07-24 Matthew Hanson <matthew_hanson@apple.com> 2 16 -
branches/safari-601.1-branch/Source/WebKit2/WebProcess/WebCoreSupport/WebPlatformStrategies.cpp
r186530 r187323 252 252 void WebPlatformStrategies::createPingHandle(NetworkingContext* networkingContext, ResourceRequest& request, bool shouldUseCredentialStorage) 253 253 { 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 254 259 auto& webProcess = WebProcess::singleton(); 255 260 if (!webProcess.usesNetworkProcess()) {
Note:
See TracChangeset
for help on using the changeset viewer.