[SCM] WebKit Debian packaging branch, debian/unstable, updated. debian/1.1.15-1-40151-g37bb677

rjw rjw at 268f45cc-cd09-0410-ab3c-d52691b4dbfc
Sat Sep 26 08:27:09 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit f3f5af6047bfec1901a9143b334840e51232f4ec
Author: rjw <rjw at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Thu Feb 19 00:14:08 2004 +0000

    Fixed Deployment build problem (longjmp clobber warning)
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@6099 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/JavaScriptCore/bindings/objc/objc_runtime.mm b/JavaScriptCore/bindings/objc/objc_runtime.mm
index e48b874..832f1cf 100644
--- a/JavaScriptCore/bindings/objc/objc_runtime.mm
+++ b/JavaScriptCore/bindings/objc/objc_runtime.mm
@@ -276,7 +276,7 @@ KJS::Value ObjcArray::valueAt(KJS::ExecState *exec, unsigned int index) const
 {
     ObjectStructPtr obj = 0;
     Object error;
-    bool haveError = false;
+    volatile bool haveError = false;
     
     if (index > [_array count]) {
         Object error = Error::create(exec, RangeError, "Index exceeds array size.");

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list