[SCM] WebKit Debian packaging branch, webkit-1.1, updated. upstream/1.1.19-706-ge5415e9

jorlow at chromium.org jorlow at chromium.org
Thu Feb 4 21:31:43 UTC 2010


The following commit has been merged in the webkit-1.1 branch:
commit 41c8301b9776e85434b30f84e0433fcfc5555559
Author: jorlow at chromium.org <jorlow at chromium.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Fri Jan 29 01:57:59 2010 +0000

    Initialize DOM Storage's quota's current length parameter when we clone it.
    https://bugs.webkit.org/show_bug.cgi?id=34294
    
    Patch by Jeremy Orlow <jorlow at chromium.org> on 2010-01-28
    Reviewed by Adam Barth.
    
    * storage/StorageMap.cpp:
    (WebCore::StorageMap::copy):
    
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@54035 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog b/WebCore/ChangeLog
index 3956aa8..b5d6a27 100644
--- a/WebCore/ChangeLog
+++ b/WebCore/ChangeLog
@@ -1,3 +1,13 @@
+2010-01-28  Jeremy Orlow  <jorlow at chromium.org>
+
+        Reviewed by Adam Barth.
+
+        Initialize DOM Storage's quota's current length parameter when we clone it.
+        https://bugs.webkit.org/show_bug.cgi?id=34294
+
+        * storage/StorageMap.cpp:
+        (WebCore::StorageMap::copy):
+
 2010-01-28  Brent Fulgham  <bfulgham at webkit.org>
 
         Unreviewed build fix after r53411 on WinCairo.
diff --git a/WebCore/storage/StorageMap.cpp b/WebCore/storage/StorageMap.cpp
index bb08671..790fde2 100644
--- a/WebCore/storage/StorageMap.cpp
+++ b/WebCore/storage/StorageMap.cpp
@@ -47,6 +47,7 @@ PassRefPtr<StorageMap> StorageMap::copy()
 {
     RefPtr<StorageMap> newMap = create(m_quotaSize);
     newMap->m_map = m_map;
+    newMap->m_currentLength = m_currentLength;
     return newMap.release();
 }
 

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list