[SCM] WebKit Debian packaging branch, webkit-1.1, updated. upstream/1.1.21-584-g1e41756

ap at apple.com ap at apple.com
Fri Feb 26 22:18:52 UTC 2010


The following commit has been merged in the webkit-1.1 branch:
commit 15e2c0caaa82a0d48f8909cc808b17d5a82ca866
Author: ap at apple.com <ap at apple.com@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Fri Feb 12 17:05:19 2010 +0000

            Reviewed by David Levin.
    
            https://bugs.webkit.org/show_bug.cgi?id=34866
            Leopard Debug Bot crashed on fast/forms/old-names.html
    
            * html/HTMLFormCollection.cpp: (WebCore::HTMLFormCollection::formCollectionInfo): Removed
            a misplaced checkConsistency() call. We are not looking at cache content at this point, and
            caches will be reset on next access.
    
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@54727 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog b/WebCore/ChangeLog
index 17b8059..2aa47d0 100644
--- a/WebCore/ChangeLog
+++ b/WebCore/ChangeLog
@@ -1,3 +1,14 @@
+2010-02-12  Alexey Proskuryakov  <ap at apple.com>
+
+        Reviewed by David Levin.
+
+        https://bugs.webkit.org/show_bug.cgi?id=34866
+        Leopard Debug Bot crashed on fast/forms/old-names.html
+
+        * html/HTMLFormCollection.cpp: (WebCore::HTMLFormCollection::formCollectionInfo): Removed
+        a misplaced checkConsistency() call. We are not looking at cache content at this point, and
+        caches will be reset on next access.
+
 2010-02-12  Pavel Feldman  <pfeldman at chromium.org>
 
         Reviewed by Timothy Hatcher.
diff --git a/WebCore/html/HTMLFormCollection.cpp b/WebCore/html/HTMLFormCollection.cpp
index 602f23b..65c48fe 100644
--- a/WebCore/html/HTMLFormCollection.cpp
+++ b/WebCore/html/HTMLFormCollection.cpp
@@ -40,7 +40,6 @@ inline CollectionCache* HTMLFormCollection::formCollectionInfo(HTMLFormElement*
 {
     if (!form->collectionInfo)
         form->collectionInfo = new CollectionCache;
-    form->collectionInfo->checkConsistency();
     return form->collectionInfo;
 }
 

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list