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

paroga at webkit.org paroga at webkit.org
Wed Dec 22 14:51:45 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit 0023250420b6b70c332fd7acd206b38e5ee560cd
Author: paroga at webkit.org <paroga at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Fri Oct 22 16:55:58 2010 +0000

    2010-10-22  Patrick Gansterer  <paroga at webkit.org>
    
            Reviewed by Adam Roben.
    
            Disable cache in ResourceHandleWin
            https://bugs.webkit.org/show_bug.cgi?id=48128
    
            The caching of windows does not work correctly, so disable it for now.
    
            * platform/network/win/ResourceHandleWin.cpp:
            (WebCore::ResourceHandle::start):
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@70312 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog b/WebCore/ChangeLog
index 0178f04..8e5531b 100644
--- a/WebCore/ChangeLog
+++ b/WebCore/ChangeLog
@@ -1,3 +1,15 @@
+2010-10-22  Patrick Gansterer  <paroga at webkit.org>
+
+        Reviewed by Adam Roben.
+
+        Disable cache in ResourceHandleWin
+        https://bugs.webkit.org/show_bug.cgi?id=48128
+
+        The caching of windows does not work correctly, so disable it for now.
+
+        * platform/network/win/ResourceHandleWin.cpp:
+        (WebCore::ResourceHandle::start):
+
 2010-10-22  Jia Pu  <jpu at apple.com>
 
         Reviewed by Dan Bernstein.
diff --git a/WebCore/platform/network/win/ResourceHandleWin.cpp b/WebCore/platform/network/win/ResourceHandleWin.cpp
index 28035b9..38d9cd1 100644
--- a/WebCore/platform/network/win/ResourceHandleWin.cpp
+++ b/WebCore/platform/network/win/ResourceHandleWin.cpp
@@ -277,7 +277,9 @@ bool ResourceHandle::start(NetworkingContext* context)
 
     DWORD flags = INTERNET_FLAG_KEEP_CONNECTION
         | INTERNET_FLAG_IGNORE_REDIRECT_TO_HTTPS
-        | INTERNET_FLAG_IGNORE_REDIRECT_TO_HTTP;
+        | INTERNET_FLAG_IGNORE_REDIRECT_TO_HTTP
+        | INTERNET_FLAG_DONT_CACHE
+        | INTERNET_FLAG_RELOAD;
 
     d->m_connectHandle = InternetConnectW(d->m_internetHandle, firstRequest().url().host().charactersWithNullTermination(), firstRequest().url().port(),
                                           0, 0, INTERNET_SERVICE_HTTP, flags, reinterpret_cast<DWORD_PTR>(this));

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list