1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* util.c (ruby_strtod): stop at dot not followed by digits.

fixed: [ruby-dev:29035]


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@10550 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2006-07-17 15:43:47 +00:00
parent 4d56c1de6f
commit 8b341cb27a

4
util.c
View file

@ -783,9 +783,9 @@ ruby_strtod(string, endPtr)
* and also locate the decimal point.
*/
for ( ; c = *p; p++) {
for ( ; (c = *p) != '\0'; p++) {
if (!ISDIGIT(c)) {
if (c != '.' || hasPoint) {
if (c != '.' || hasPoint || !ISDIGIT(p[1])) {
break;
}
hasPoint = Qtrue;