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

zherczeg at webkit.org zherczeg at webkit.org
Wed Dec 22 15:08:20 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit 434952fc038ab1e4aaedd18e1f4accbf106a7be0
Author: zherczeg at webkit.org <zherczeg at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Thu Oct 28 12:16:32 2010 +0000

    Try to fix interpreter build.
    
    Rubber stamped by Csaba Osztrogonác.
    
    Needed parentheses around assignment to avoid GCC warning after
    http://trac.webkit.org/changeset/70703
    
    * interpreter/Interpreter.cpp:
    (JSC::Interpreter::privateExecute):
    
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@70766 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/JavaScriptCore/ChangeLog b/JavaScriptCore/ChangeLog
index bd71bcc..8e96be6 100644
--- a/JavaScriptCore/ChangeLog
+++ b/JavaScriptCore/ChangeLog
@@ -1,3 +1,15 @@
+2010-10-28  Herczeg Zoltan  <zherczeg at webkit.org>
+
+        Rubber stamped by Csaba Osztrogonác.
+
+        Try to fix interpreter build.
+
+        Needed parentheses around assignment to avoid GCC warning after
+        http://trac.webkit.org/changeset/70703
+
+        * interpreter/Interpreter.cpp:
+        (JSC::Interpreter::privateExecute):
+
 2010-10-28  Peter Varga  <pvarga at inf.u-szeged.hu>
 
         Reviewed by Csaba Osztrogonác.
diff --git a/JavaScriptCore/interpreter/Interpreter.cpp b/JavaScriptCore/interpreter/Interpreter.cpp
index e8130fb..a62369e 100644
--- a/JavaScriptCore/interpreter/Interpreter.cpp
+++ b/JavaScriptCore/interpreter/Interpreter.cpp
@@ -3798,7 +3798,7 @@ skip_id_custom_self:
 
         if (thisValue == globalObject && funcVal == globalObject->evalFunction()) {
             JSValue result = callEval(callFrame, registerFile, argv, argCount, registerOffset);
-            if (exceptionValue = globalData->exception)
+            if ((exceptionValue = globalData->exception))
                 goto vm_throw;
             functionReturnValue = result;
 

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list