Changeset 187248 in webkit
- Timestamp:
- Jul 23, 2015, 1:18:41 PM (11 years ago)
- Location:
- trunk
- 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
-
trunk/LayoutTests/ChangeLog
r187228 r187248 1 2015-07-23 Brady Eidson <beidson@apple.com> 2 3 Crash in WebPlatformStrategies::createPingHandle - Deref a null NetworkingContext. 4 <rdar://problem/21949735> and https://bugs.webkit.org/show_bug.cgi?id=147227 5 6 Reviewed by Alexey Proskuryakov. 7 8 * http/tests/security/contentSecurityPolicy/user-style-sheet-font-crasher-expected.txt: Added. 9 * http/tests/security/contentSecurityPolicy/user-style-sheet-font-crasher.html: Added. 10 1 11 2015-07-23 Michael Saboff <msaboff@apple.com> 2 12 -
trunk/Source/WebKit2/ChangeLog
r187240 r187248 1 2015-07-23 Brady Eidson <beidson@apple.com> 2 3 Crash in WebPlatformStrategies::createPingHandle - Deref a null NetworkingContext. 4 <rdar://problem/21949735> and https://bugs.webkit.org/show_bug.cgi?id=147227 5 6 Reviewed by Alexey Proskuryakov. 7 8 * WebProcess/WebCoreSupport/WebPlatformStrategies.cpp: 9 (WebKit::WebPlatformStrategies::createPingHandle): Skip it if there's a null NetworkingContext. 10 1 11 2015-07-23 Tim Horton <timothy_horton@apple.com> 2 12 -
trunk/Source/WebKit2/WebProcess/WebCoreSupport/WebPlatformStrategies.cpp
r186530 r187248 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.