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

ossy at webkit.org ossy at webkit.org
Wed Dec 22 13:04:15 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit 060fbc6864fe92040e9e1a8a367b31b9cafccce1
Author: ossy at webkit.org <ossy at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Mon Sep 6 16:42:28 2010 +0000

    2010-09-06  Csaba Osztrogonác  <ossy at webkit.org>
    
            Reviewed by Antonio Gomes.
    
            Web Inspector: Tests crash on Qt bots revealed by r66720
            https://bugs.webkit.org/show_bug.cgi?id=45256
    
            * WebCoreSupport/InspectorClientQt.cpp:
            (WebCore::InspectorClientQt::InspectorClientQt): m_frontendClient must be initialized by constructor
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@66835 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebKit/qt/ChangeLog b/WebKit/qt/ChangeLog
index 1b9c529..20f90e4 100644
--- a/WebKit/qt/ChangeLog
+++ b/WebKit/qt/ChangeLog
@@ -1,3 +1,13 @@
+2010-09-06  Csaba Osztrogonác  <ossy at webkit.org>
+
+        Reviewed by Antonio Gomes.
+
+        Web Inspector: Tests crash on Qt bots revealed by r66720
+        https://bugs.webkit.org/show_bug.cgi?id=45256
+
+        * WebCoreSupport/InspectorClientQt.cpp:
+        (WebCore::InspectorClientQt::InspectorClientQt): m_frontendClient must be initialized by constructor
+
 2010-09-06  Yury Semikhatsky  <yurys at chromium.org>
 
         Unreviewed. Attempt to fix random test crashes after r66720.
diff --git a/WebKit/qt/WebCoreSupport/InspectorClientQt.cpp b/WebKit/qt/WebCoreSupport/InspectorClientQt.cpp
index 5378ccf..55aca7f 100644
--- a/WebKit/qt/WebCoreSupport/InspectorClientQt.cpp
+++ b/WebKit/qt/WebCoreSupport/InspectorClientQt.cpp
@@ -96,6 +96,7 @@ public slots:
 InspectorClientQt::InspectorClientQt(QWebPage* page)
     : m_inspectedWebPage(page)
     , m_frontendWebPage(0)
+    , m_frontendClient(0)
 {}
 
 void InspectorClientQt::inspectorDestroyed()

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list