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

robert at webkit.org robert at webkit.org
Wed Dec 22 13:19:47 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit 2f83c59a50586174216b72260e040a68f8006cb0
Author: robert at webkit.org <robert at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Sat Sep 11 05:55:46 2010 +0000

    2010-09-10  Robert Hogan  <robert at webkit.org>
    
            Reviewed by Andreas Kling.
    
            [Qt] Fix crash in DRT in standalone mode
    
            https://bugs.webkit.org/show_bug.cgi?id=45454
    
            * DumpRenderTree/qt/DumpRenderTreeQt.cpp:
            (WebCore::DumpRenderTree::loadNextTestInStandAloneMode):
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@67282 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebKitTools/ChangeLog b/WebKitTools/ChangeLog
index 647c731..4139011 100644
--- a/WebKitTools/ChangeLog
+++ b/WebKitTools/ChangeLog
@@ -1,3 +1,14 @@
+2010-09-10  Robert Hogan  <robert at webkit.org>
+
+        Reviewed by Andreas Kling.
+
+        [Qt] Fix crash in DRT in standalone mode
+
+        https://bugs.webkit.org/show_bug.cgi?id=45454
+
+        * DumpRenderTree/qt/DumpRenderTreeQt.cpp:
+        (WebCore::DumpRenderTree::loadNextTestInStandAloneMode):
+
 2010-09-10  Sam Weinig  <sam at webkit.org>
 
         Reviewed by Darin Adler.
diff --git a/WebKitTools/DumpRenderTree/qt/DumpRenderTreeQt.cpp b/WebKitTools/DumpRenderTree/qt/DumpRenderTreeQt.cpp
index 00ccdb5..dc81f56 100644
--- a/WebKitTools/DumpRenderTree/qt/DumpRenderTreeQt.cpp
+++ b/WebKitTools/DumpRenderTree/qt/DumpRenderTreeQt.cpp
@@ -668,8 +668,10 @@ void DumpRenderTree::processArgsLine(const QStringList &args)
 
 void DumpRenderTree::loadNextTestInStandAloneMode()
 {
-    if (m_standAloneModeTestList.isEmpty())
+    if (m_standAloneModeTestList.isEmpty()) {
         emit quit();
+        return;
+    }
 
     processLine(m_standAloneModeTestList.first());
     m_standAloneModeTestList.removeFirst();

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list