[SCM] WebKit Debian packaging branch, webkit-1.1, updated. upstream/1.1.21-584-g1e41756

eric at webkit.org eric at webkit.org
Fri Feb 26 22:15:41 UTC 2010


The following commit has been merged in the webkit-1.1 branch:
commit 05d2ae23e94f9602d4acb66cb3aa79cc7ae1adee
Author: eric at webkit.org <eric at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Tue Feb 9 09:51:35 2010 +0000

    2010-02-09  Janne Koskinen  <janne.p.koskinen at digia.com>
    
            Reviewed by Laszlo Gombos.
    
            [Qt] use nanval() for Symbian as nonInlineNaN
            https://bugs.webkit.org/show_bug.cgi?id=34170
    
            numeric_limits<double>::quiet_NaN is broken in Symbian
            causing NaN to be evaluated as a number.
    
            * runtime/JSValue.cpp:
            (JSC::nonInlineNaN):
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@54539 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/JavaScriptCore/ChangeLog b/JavaScriptCore/ChangeLog
index 7673a97..1acabd5 100644
--- a/JavaScriptCore/ChangeLog
+++ b/JavaScriptCore/ChangeLog
@@ -1,3 +1,16 @@
+2010-02-09  Janne Koskinen  <janne.p.koskinen at digia.com>
+
+        Reviewed by Laszlo Gombos.
+
+        [Qt] use nanval() for Symbian as nonInlineNaN
+        https://bugs.webkit.org/show_bug.cgi?id=34170
+
+        numeric_limits<double>::quiet_NaN is broken in Symbian
+        causing NaN to be evaluated as a number.
+
+        * runtime/JSValue.cpp:
+        (JSC::nonInlineNaN):
+
 2010-02-09  Tamas Szirbucz  <szirbucz at inf.u-szeged.hu>
 
         Reviewed by Gavin Barraclough.
diff --git a/JavaScriptCore/runtime/JSValue.cpp b/JavaScriptCore/runtime/JSValue.cpp
index 699c1cd..502312c 100644
--- a/JavaScriptCore/runtime/JSValue.cpp
+++ b/JavaScriptCore/runtime/JSValue.cpp
@@ -174,7 +174,11 @@ uint32_t toUInt32SlowCase(double d, bool& ok)
 
 NEVER_INLINE double nonInlineNaN()
 {
+#if OS(SYMBIAN)
+    return nanval();
+#else
     return std::numeric_limits<double>::quiet_NaN();
+#endif
 }
 
 } // namespace JSC

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list