I bust myself back to private, like Sgt. Zim in 'Starship Troopers', in order to fight bugs hand-to-hand with no claim to higher rank (514971, r=gal).

This commit is contained in:
Brendan Eich
2009-09-06 17:59:17 -07:00
parent 55b78cef6a
commit 8c4361d4a9

View File

@@ -698,7 +698,7 @@ js_AtomizeString(JSContext *cx, JSString *str, uintN flags)
if (length == 3)
i = i * 10 + chars[2] - '0';
if (jsuint(i) < INT_STRING_LIMIT)
if (jsuint(i) < INT_STRING_LIMIT && ((length == 2) ? i > 9 : i > 99))
return (JSAtom *) STRING_TO_JSVAL(JSString::intString(i));
}
}