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

hyatt hyatt at 268f45cc-cd09-0410-ab3c-d52691b4dbfc
Sat Sep 26 07:55:17 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit f3ffc2af4efaab4087489d8c6b51428839a118d3
Author: hyatt <hyatt at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Fri Sep 5 00:29:10 2003 +0000

    	Fix for 3408630, leak of child frame parts caused by a missing deref when frames
    	get detached from their parent frame list.
    
            Reviewed by mjs
    
            * kwq/KWQKHTMLPart.mm:
            (KHTMLPart::frameDetached):
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@4939 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog-2003-10-25 b/WebCore/ChangeLog-2003-10-25
index 5139ae8..f4c649b 100644
--- a/WebCore/ChangeLog-2003-10-25
+++ b/WebCore/ChangeLog-2003-10-25
@@ -1,3 +1,13 @@
+2003-09-04  David Hyatt  <hyatt at apple.com>
+
+	Fix for 3408630, leak of child frame parts caused by a missing deref when frames
+	get detached from their parent frame list.
+	
+        Reviewed by mjs
+
+        * kwq/KWQKHTMLPart.mm:
+        (KHTMLPart::frameDetached):
+
 2003-09-04  Darin Adler  <darin at apple.com>
 
         * layout-tests/apple-only/base/www.msn.com/index-expected.txt: Update for residual style fix.
diff --git a/WebCore/ChangeLog-2005-08-23 b/WebCore/ChangeLog-2005-08-23
index 5139ae8..f4c649b 100644
--- a/WebCore/ChangeLog-2005-08-23
+++ b/WebCore/ChangeLog-2005-08-23
@@ -1,3 +1,13 @@
+2003-09-04  David Hyatt  <hyatt at apple.com>
+
+	Fix for 3408630, leak of child frame parts caused by a missing deref when frames
+	get detached from their parent frame list.
+	
+        Reviewed by mjs
+
+        * kwq/KWQKHTMLPart.mm:
+        (KHTMLPart::frameDetached):
+
 2003-09-04  Darin Adler  <darin at apple.com>
 
         * layout-tests/apple-only/base/www.msn.com/index-expected.txt: Update for residual style fix.
diff --git a/WebCore/kwq/KWQKHTMLPart.mm b/WebCore/kwq/KWQKHTMLPart.mm
index 0114b73..1d269b2 100644
--- a/WebCore/kwq/KWQKHTMLPart.mm
+++ b/WebCore/kwq/KWQKHTMLPart.mm
@@ -605,6 +605,7 @@ void KHTMLPart::frameDetached()
     for (FrameIt it = parentFrames.begin(); it != end; ++it) {
         if ((*it).m_part == this) {
             parentFrames.remove(it);
+            deref();
             break;
         }
     }

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list