[SCM] WebKit Debian packaging branch, debian/experimental, updated. upstream/1.3.3-9427-gc2be6fc

commit-queue at webkit.org commit-queue at webkit.org
Wed Dec 22 16:15:39 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit 8d3388781867cc6a67cb9adc1faa08e6926d9982
Author: commit-queue at webkit.org <commit-queue at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Sat Nov 20 05:20:29 2010 +0000

    2010-11-19  Yi Shen  <yi.4.shen at nokia.com>
    
            Reviewed by Laszlo Gombos.
    
            [Qt] Memory leak in QWebInspector
            https://bugs.webkit.org/show_bug.cgi?id=49765
    
            Delete QWebInspectorPrivate in ~QWebInspector()
    
            * Api/qwebinspector.cpp:
            (QWebInspector::~QWebInspector):
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@72466 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebKit/qt/Api/qwebinspector.cpp b/WebKit/qt/Api/qwebinspector.cpp
index 27148f7..6706f2a 100644
--- a/WebKit/qt/Api/qwebinspector.cpp
+++ b/WebKit/qt/Api/qwebinspector.cpp
@@ -91,6 +91,8 @@ QWebInspector::~QWebInspector()
 {
     // Remove association principally to prevent deleting a child frontend
     setPage(0);
+    delete d;
+    d = 0;
 }
 
 /*!
diff --git a/WebKit/qt/ChangeLog b/WebKit/qt/ChangeLog
index c41d342..9f7dca8 100644
--- a/WebKit/qt/ChangeLog
+++ b/WebKit/qt/ChangeLog
@@ -1,3 +1,15 @@
+2010-11-19  Yi Shen  <yi.4.shen at nokia.com>
+
+        Reviewed by Laszlo Gombos.
+
+        [Qt] Memory leak in QWebInspector
+        https://bugs.webkit.org/show_bug.cgi?id=49765
+
+        Delete QWebInspectorPrivate in ~QWebInspector()
+
+        * Api/qwebinspector.cpp:
+        (QWebInspector::~QWebInspector):
+
 2010-11-19  Sam Magnuson  <smagnuso at gmail.com>
 
         Reviewed by Andreas Kling.

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list