[SCM] WebKit Debian packaging branch, webkit-1.3, updated. upstream/1.3.7-4207-g178b198

simon.fraser at apple.com simon.fraser at apple.com
Sun Feb 20 23:47:19 UTC 2011


The following commit has been merged in the webkit-1.3 branch:
commit 2c2b179375c6f21d6248ff50f029bd9d386e002f
Author: simon.fraser at apple.com <simon.fraser at apple.com@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Tue Jan 25 06:09:06 2011 +0000

    2011-01-24  Simon Fraser  <simon.fraser at apple.com>
    
            Reviewed by Dan Bernstein.
    
            Leaking CSSRuleDataList objects
            https://bugs.webkit.org/show_bug.cgi?id=53062
    
            Fix leaked CSSRuleDataLists added to the m_pseudoRules hash.
    
            * css/CSSStyleSelector.cpp:
            (WebCore::CSSRuleSet::~CSSRuleSet):
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@76573 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/Source/WebCore/ChangeLog b/Source/WebCore/ChangeLog
index a85ca3a..9f51f11 100644
--- a/Source/WebCore/ChangeLog
+++ b/Source/WebCore/ChangeLog
@@ -1,5 +1,17 @@
 2011-01-24  Simon Fraser  <simon.fraser at apple.com>
 
+        Reviewed by Dan Bernstein.
+
+        Leaking CSSRuleDataList objects
+        https://bugs.webkit.org/show_bug.cgi?id=53062
+
+        Fix leaked CSSRuleDataLists added to the m_pseudoRules hash.
+
+        * css/CSSStyleSelector.cpp:
+        (WebCore::CSSRuleSet::~CSSRuleSet):
+
+2011-01-24  Simon Fraser  <simon.fraser at apple.com>
+
         Reviewed by Eric Seidel.
 
         Refcount Images used in rendering code
diff --git a/Source/WebCore/css/CSSStyleSelector.cpp b/Source/WebCore/css/CSSStyleSelector.cpp
index 58d1473..54ae413 100644
--- a/Source/WebCore/css/CSSStyleSelector.cpp
+++ b/Source/WebCore/css/CSSStyleSelector.cpp
@@ -2885,6 +2885,7 @@ CSSRuleSet::~CSSRuleSet()
 { 
     deleteAllValues(m_idRules);
     deleteAllValues(m_classRules);
+    deleteAllValues(m_pseudoRules);
     deleteAllValues(m_tagRules);
 }
 

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list