[webkit-changes] cvs commit: JavaScriptCore/kjs function.cpp
Geoffrey
ggaren at opensource.apple.com
Tue Jul 12 11:20:03 PDT 2005
ggaren 05/07/12 11:20:02
Modified: . ChangeLog
kjs function.cpp
Log:
Reviewed by mjs.
* kjs/function.cpp:
(KJS::IndexToNameMap::operator[]): fixed infinite recursion
bug in last checkin
Revision Changes Path
1.745 +8 -0 JavaScriptCore/ChangeLog
Index: ChangeLog
===================================================================
RCS file: /cvs/root/JavaScriptCore/ChangeLog,v
retrieving revision 1.744
retrieving revision 1.745
diff -u -r1.744 -r1.745
--- ChangeLog 12 Jul 2005 16:48:27 -0000 1.744
+++ ChangeLog 12 Jul 2005 18:20:01 -0000 1.745
@@ -1,5 +1,13 @@
2005-07-12 Geoffrey Garen <ggaren at apple.com>
+ Reviewed by mjs.
+
+ * kjs/function.cpp:
+ (KJS::IndexToNameMap::operator[]): fixed infinite recursion
+ bug in last checkin
+
+2005-07-12 Geoffrey Garen <ggaren at apple.com>
+
-fixed http://bugzilla.opendarwin.org/show_bug.cgi?id=3881
arguments object should share values with function parameters
1.46 +1 -1 JavaScriptCore/kjs/function.cpp
Index: function.cpp
===================================================================
RCS file: /cvs/root/JavaScriptCore/kjs/function.cpp,v
retrieving revision 1.45
retrieving revision 1.46
diff -u -r1.45 -r1.46
--- function.cpp 12 Jul 2005 16:48:29 -0000 1.45
+++ function.cpp 12 Jul 2005 18:20:02 -0000 1.46
@@ -407,7 +407,7 @@
assert(indexIsNumber && indexAsNumber < size);
- return (*this)[index];
+ return (*this)[indexAsNumber];
}
// ------------------------------ ArgumentsImp ---------------------------------
More information about the webkit-changes
mailing list