[SCM] WebKit Debian packaging branch, debian/unstable, updated. debian/1.1.15-1-40151-g37bb677
mjs
mjs at 268f45cc-cd09-0410-ab3c-d52691b4dbfc
Sat Sep 26 08:50:42 UTC 2009
The following commit has been merged in the debian/unstable branch:
commit cb88dca001ca3071c4dfd96657b62d02b11e4776
Author: mjs <mjs at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date: Thu Jul 15 00:14:51 2004 +0000
Reviewed by John.
<rdar://problem/3711474>: (REGRESSION (125-146): JavaScript 'toString(16)' is broken)
<rdar://problem/3644873>: (REGRESSION (125-140u): secondary list doesn't fill in at Southwest.com)
* kjs/number_object.cpp:
(NumberProtoFuncImp::call): Initialize radix from dradix, not from itself!
git-svn-id: http://svn.webkit.org/repository/webkit/trunk@7032 268f45cc-cd09-0410-ab3c-d52691b4dbfc
diff --git a/JavaScriptCore/ChangeLog b/JavaScriptCore/ChangeLog
index 67e1b21..ce1e600 100644
--- a/JavaScriptCore/ChangeLog
+++ b/JavaScriptCore/ChangeLog
@@ -1,3 +1,13 @@
+2004-07-14 Maciej Stachowiak <mjs at apple.com>
+
+ Reviewed by John.
+
+ <rdar://problem/3711474>: (REGRESSION (125-146): JavaScript 'toString(16)' is broken)
+ <rdar://problem/3644873>: (REGRESSION (125-140u): secondary list doesn't fill in at Southwest.com)
+
+ * kjs/number_object.cpp:
+ (NumberProtoFuncImp::call): Initialize radix from dradix, not from itself!
+
2004-07-13 Kevin Decker <kdecker at apple.com>
Reviewed by kocienda.
diff --git a/JavaScriptCore/kjs/number_object.cpp b/JavaScriptCore/kjs/number_object.cpp
index 8950714..ba08544 100644
--- a/JavaScriptCore/kjs/number_object.cpp
+++ b/JavaScriptCore/kjs/number_object.cpp
@@ -98,7 +98,7 @@ Value NumberProtoFuncImp::call(ExecState *exec, Object &thisObj, const List &arg
if (dradix < 2 || dradix > 36 || dradix == 10)
result = String(v.toString(exec));
else {
- int radix = static_cast<int>(radix);
+ int radix = static_cast<int>(dradix);
unsigned i = v.toUInt32(exec);
char s[33];
char *p = s + sizeof(s);
--
WebKit Debian packaging
More information about the Pkg-webkit-commits
mailing list