[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 11:49:51 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit 6dac2e460ac8b70a6520238448aa259a1a152c63
Author: ossy at webkit.org <ossy at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Mon Aug 9 05:43:49 2010 +0000

    2010-08-08  Csaba Osztrogonác  <ossy at webkit.org>
    
            Reviewed by Antonio Gomes.
    
            Web Inspector: Fix warning in WebCore/inspector/InspectorDebuggerAgent.cpp
            https://bugs.webkit.org/show_bug.cgi?id=43698
    
            * inspector/InspectorDebuggerAgent.cpp:
            (WebCore::InspectorDebuggerAgent::editScriptSource): Add suggested parentheses.
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@64964 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog b/WebCore/ChangeLog
index d08711c..64f5ab0 100644
--- a/WebCore/ChangeLog
+++ b/WebCore/ChangeLog
@@ -1,3 +1,13 @@
+2010-08-08  Csaba Osztrogonác  <ossy at webkit.org>
+
+        Reviewed by Antonio Gomes.
+
+        Web Inspector: Fix warning in WebCore/inspector/InspectorDebuggerAgent.cpp
+        https://bugs.webkit.org/show_bug.cgi?id=43698
+
+        * inspector/InspectorDebuggerAgent.cpp:
+        (WebCore::InspectorDebuggerAgent::editScriptSource): Add suggested parentheses.
+
 2010-08-05  MORITA Hajime  <morrita at google.com>
 
         Reviewed by Tony Chang.
diff --git a/WebCore/inspector/InspectorDebuggerAgent.cpp b/WebCore/inspector/InspectorDebuggerAgent.cpp
index 6732b08..3a582c8 100644
--- a/WebCore/inspector/InspectorDebuggerAgent.cpp
+++ b/WebCore/inspector/InspectorDebuggerAgent.cpp
@@ -129,7 +129,7 @@ void InspectorDebuggerAgent::removeBreakpoint(const String& sourceID, unsigned l
 
 void InspectorDebuggerAgent::editScriptSource(long, const String& sourceID, const String& newContent, bool* success, String* result, RefPtr<InspectorValue>* newCallFrames)
 {
-    if (*success = ScriptDebugServer::shared().editScriptSource(sourceID, newContent, *result))
+    if ((*success = ScriptDebugServer::shared().editScriptSource(sourceID, newContent, *result)))
         *newCallFrames = currentCallFrames();
 }
 

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list