[SCM] WebKit Debian packaging branch, webkit-1.1, updated. upstream/1.1.22-985-g3c00f00
hamaji at chromium.org
hamaji at chromium.org
Wed Mar 17 18:16:01 UTC 2010
The following commit has been merged in the webkit-1.1 branch:
commit 468e8b2635950cacf1ef803cfd4aead7762835db
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