[SCM] WebKit Debian packaging branch, webkit-1.2, updated. upstream/1.1.90-6072-g9a69373

hamaji at chromium.org hamaji at chromium.org
Thu Apr 8 02:09:37 UTC 2010


The following commit has been merged in the webkit-1.2 branch:
commit 6044a6e5075431b1fc4b95e2501cc1a4d48ec95c
Author: hamaji at chromium.org <hamaji at chromium.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Thu Mar 4 13:58:02 2010 +0000

    2010-03-04  Shinichiro Hamaji  <hamaji at chromium.org>
    
            Unreviewed. Remove a non-ASCII character introduced in the following bug.
    
            put_by_id does will incorrectly cache writes where a specific value exists, where at the point of caching the same value is being written.
            https://bugs.webkit.org/show_bug.cgi?id=35537
    
            * runtime/JSObject.h:
            (JSC::JSObject::putDirectInternal):
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@55521 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/JavaScriptCore/ChangeLog b/JavaScriptCore/ChangeLog
index ae4181c..25257f1 100644
--- a/JavaScriptCore/ChangeLog
+++ b/JavaScriptCore/ChangeLog
@@ -1,3 +1,13 @@
+2010-03-04  Shinichiro Hamaji  <hamaji at chromium.org>
+
+        Unreviewed. Remove a non-ASCII character introduced in the following bug.
+
+        put_by_id does will incorrectly cache writes where a specific value exists, where at the point of caching the same value is being written.
+        https://bugs.webkit.org/show_bug.cgi?id=35537
+
+        * runtime/JSObject.h:
+        (JSC::JSObject::putDirectInternal):
+
 2010-03-04  Jocelyn Turcotte  <jocelyn.turcotte at nokia.com>
 
         Reviewed by Tor Arne Vestbø.
diff --git a/JavaScriptCore/runtime/JSObject.h b/JavaScriptCore/runtime/JSObject.h
index d8c7396..cd8f7f7 100644
--- a/JavaScriptCore/runtime/JSObject.h
+++ b/JavaScriptCore/runtime/JSObject.h
@@ -492,7 +492,7 @@ inline void JSObject::putDirectInternal(const Identifier& propertyName, JSValue
 
         // There are three possibilities here:
         //  (1) There is an existing specific value set, and we're overwriting with *the same value*.
-        //       * Do nothing – no need to despecify, but that means we can't cache (a cached
+        //       * Do nothing - no need to despecify, but that means we can't cache (a cached
         //         put could write a different value). Leave the slot in an uncachable state.
         //  (2) There is a specific value currently set, but we're writing a different value.
         //       * First, we have to despecify.  Having done so, this is now a regular slot

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list