[SCM] WebKit Debian packaging branch, debian/experimental, updated. upstream/1.3.3-9427-gc2be6fc

ap at apple.com ap at apple.com
Wed Dec 22 11:12:11 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit 0561a59acb95c35e095140e45a6fdd1fcad22bef
Author: ap at apple.com <ap at apple.com@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Thu Jul 15 00:20:27 2010 +0000

            Not reviewed.
    
            https://bugs.webkit.org/show_bug.cgi?id=42201
            Use ResourceHandle object for synchronous loading
    
            * platform/network/mac/ResourceHandleMac.mm:
            (WebCore::ResourceHandle::loadResourceSynchronously): Fix an obvious typo.
    
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@63380 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog b/WebCore/ChangeLog
index 49dd592..64b8c4d 100644
--- a/WebCore/ChangeLog
+++ b/WebCore/ChangeLog
@@ -1,5 +1,15 @@
 2010-07-14  Alexey Proskuryakov  <ap at apple.com>
 
+        Not reviewed.
+
+        https://bugs.webkit.org/show_bug.cgi?id=42201
+        Use ResourceHandle object for synchronous loading
+
+        * platform/network/mac/ResourceHandleMac.mm:
+        (WebCore::ResourceHandle::loadResourceSynchronously): Fix an obvious typo.
+
+2010-07-14  Alexey Proskuryakov  <ap at apple.com>
+
         Reviewed by Brady Eidson.
 
         https://bugs.webkit.org/show_bug.cgi?id=42201
diff --git a/WebCore/platform/network/mac/ResourceHandleMac.mm b/WebCore/platform/network/mac/ResourceHandleMac.mm
index 551a059..c8a2b88 100644
--- a/WebCore/platform/network/mac/ResourceHandleMac.mm
+++ b/WebCore/platform/network/mac/ResourceHandleMac.mm
@@ -506,7 +506,7 @@ void ResourceHandle::loadResourceSynchronously(const ResourceRequest& request, S
     // If a URL already has cookies, then we'll relax the 3rd party cookie policy and accept new cookies.
     NSHTTPCookieStorage *sharedStorage = [NSHTTPCookieStorage sharedHTTPCookieStorage];
     if ([sharedStorage cookieAcceptPolicy] == NSHTTPCookieAcceptPolicyOnlyFromMainDocumentDomain && [[sharedStorage cookiesForURL:[firstRequest URL]] count]) {
-        NSMutableURLRequest *mutableRequest = [[firstRequest copy] autorelease];
+        NSMutableURLRequest *mutableRequest = [[firstRequest mutableCopy] autorelease];
         [mutableRequest setMainDocumentURL:[mutableRequest URL]];
         firstRequest = mutableRequest;
     }

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list