@@ -691,7 +691,7 @@ js_strtod(const char *string, char **endPtr)
}
expSign = FALSE;
while ((*p >= '0') && (*p <= '9') && exp < INT_MAX/10) {
while ((*p >= '0') && (*p <= '9') && exp < INT_MAX/100) {
exp = exp * 10 + (*p - '0');
p += 1;
The note is not visible to the blocked user.