Title: [293369] branches/safari-613-branch/Source
Revision
293369
Author
repst...@apple.com
Date
2022-04-25 17:02:21 -0700 (Mon, 25 Apr 2022)

Log Message

Apply patch. rdar://problem/90968687

Modified Paths


Diff

Modified: branches/safari-613-branch/Source/WebKit/NetworkProcess/NetworkProcess.cpp (293368 => 293369)


--- branches/safari-613-branch/Source/WebKit/NetworkProcess/NetworkProcess.cpp	2022-04-25 23:14:18 UTC (rev 293368)
+++ branches/safari-613-branch/Source/WebKit/NetworkProcess/NetworkProcess.cpp	2022-04-26 00:02:21 UTC (rev 293369)
@@ -479,7 +479,7 @@
     if (sessionID.isEphemeral())
         storageSession = createPrivateStorageSession(cfIdentifier.get(), std::nullopt, WebCore::NetworkStorageSession::ShouldDisableCFURLCache::Yes);
     else if (sessionID != PAL::SessionID::defaultSessionID())
-        storageSession = WebCore::NetworkStorageSession::createCFStorageSessionForIdentifier(cfIdentifier.get());
+        storageSession = WebCore::NetworkStorageSession::createCFStorageSessionForIdentifier(cfIdentifier.get(), WebCore::NetworkStorageSession::ShouldDisableCFURLCache::Yes);
 
     if (NetworkStorageSession::processMayUseCookieAPI()) {
         ASSERT(hasProcessPrivilege(ProcessPrivilege::CanAccessRawCookies));

Modified: branches/safari-613-branch/Source/WebKitLegacy/WebCoreSupport/NetworkStorageSessionMap.cpp (293368 => 293369)


--- branches/safari-613-branch/Source/WebKitLegacy/WebCoreSupport/NetworkStorageSessionMap.cpp	2022-04-25 23:14:18 UTC (rev 293368)
+++ branches/safari-613-branch/Source/WebKitLegacy/WebCoreSupport/NetworkStorageSessionMap.cpp	2022-04-26 00:02:21 UTC (rev 293369)
@@ -90,7 +90,7 @@
     if (sessionID.isEphemeral())
         storageSession = WebCore::createPrivateStorageSession(identifier.get());
     else
-        storageSession = WebCore::NetworkStorageSession::createCFStorageSessionForIdentifier(identifier.get(), WebCore::NetworkStorageSession::ShouldDisableCFURLCache::Yes);
+        storageSession = WebCore::NetworkStorageSession::createCFStorageSessionForIdentifier(identifier.get());
 
     RetainPtr<CFHTTPCookieStorageRef> cookieStorage;
     if (WebCore::NetworkStorageSession::processMayUseCookieAPI()) {
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to