[SCM] WebKit Debian packaging branch, debian/unstable, updated. debian/1.1.15-1-40151-g37bb677

kocienda kocienda at 268f45cc-cd09-0410-ab3c-d52691b4dbfc
Sat Sep 26 07:54:59 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit e51ad5fad4bd3d54ef723057702ad3a98e7700ee
Author: kocienda <kocienda at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Tue Sep 2 22:54:54 2003 +0000

            Reviewed by Darin
    
    	Fix for this bug:
    
    	<rdar://problem/3399169>: 4 leaks of DOMString objects (Mail)
    
    	Remove circular reference between AttributeImpl and AttrImpl objects.
    	This was causing the leak.
    
            * khtml/xml/dom_elementimpl.cpp:
            (AttributeImpl::allocateImpl):
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@4927 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog-2003-10-25 b/WebCore/ChangeLog-2003-10-25
index 8b92539..26d9d2c 100644
--- a/WebCore/ChangeLog-2003-10-25
+++ b/WebCore/ChangeLog-2003-10-25
@@ -1,3 +1,17 @@
+2003-09-02  Ken Kocienda  <kocienda at apple.com>
+
+        Reviewed by Darin
+
+	Fix for this bug:
+
+	<rdar://problem/3399169>: 4 leaks of DOMString objects (Mail)
+
+	Remove circular reference between AttributeImpl and AttrImpl objects.
+	This was causing the leak.
+
+        * khtml/xml/dom_elementimpl.cpp:
+        (AttributeImpl::allocateImpl):
+
 2003-09-02  David Hyatt  <hyatt at apple.com>
 
 	Fix for 3359408, DirWS should not be used when collapsing/stripping spaces,
diff --git a/WebCore/ChangeLog-2005-08-23 b/WebCore/ChangeLog-2005-08-23
index 8b92539..26d9d2c 100644
--- a/WebCore/ChangeLog-2005-08-23
+++ b/WebCore/ChangeLog-2005-08-23
@@ -1,3 +1,17 @@
+2003-09-02  Ken Kocienda  <kocienda at apple.com>
+
+        Reviewed by Darin
+
+	Fix for this bug:
+
+	<rdar://problem/3399169>: 4 leaks of DOMString objects (Mail)
+
+	Remove circular reference between AttributeImpl and AttrImpl objects.
+	This was causing the leak.
+
+        * khtml/xml/dom_elementimpl.cpp:
+        (AttributeImpl::allocateImpl):
+
 2003-09-02  David Hyatt  <hyatt at apple.com>
 
 	Fix for 3359408, DirWS should not be used when collapsing/stripping spaces,
diff --git a/WebCore/khtml/xml/dom_elementimpl.cpp b/WebCore/khtml/xml/dom_elementimpl.cpp
index 0b281eb..5d633a6 100644
--- a/WebCore/khtml/xml/dom_elementimpl.cpp
+++ b/WebCore/khtml/xml/dom_elementimpl.cpp
@@ -48,7 +48,6 @@ using namespace khtml;
 
 void AttributeImpl::allocateImpl(ElementImpl* e) {
     _impl = new AttrImpl(e, e->docPtr(), this);
-    _impl->ref();
 }
 
 AttrImpl::AttrImpl(ElementImpl* element, DocumentPtr* docPtr, AttributeImpl* a)

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list