From 30492d9d53f1d79c1713f3ed4e7c623cd1490884 Mon Sep 17 00:00:00 2001 From: matz Date: Tue, 27 Jun 2006 16:15:22 +0000 Subject: * object.c (rb_cstr_to_dbl): should not skip '_' at the beginning of a string. [ruby-dev:28830] * bignum.c (rb_cstr_to_inum): ditto. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@10414 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- bignum.c | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) (limited to 'bignum.c') diff --git a/bignum.c b/bignum.c index 2bd44c2bf9..f06444d8dd 100644 --- a/bignum.c +++ b/bignum.c @@ -313,12 +313,7 @@ rb_cstr_to_inum(const char *str, int base, int badcheck) if (badcheck) goto bad; return INT2FIX(0); } - if (badcheck) { - while (ISSPACE(*str)) str++; - } - else { - while (ISSPACE(*str) || *str == '_') str++; - } + while (ISSPACE(*str)) str++; if (str[0] == '+') { str++; @@ -408,7 +403,7 @@ rb_cstr_to_inum(const char *str, int base, int badcheck) if (len <= (sizeof(VALUE)*CHAR_BIT)) { unsigned long val = strtoul(str, &end, base); - if (*end == '_') goto bigparse; + if (str < end && *end == '_') goto bigparse; if (badcheck) { if (end == str) goto bad; /* no number */ while (*end && ISSPACE(*end)) end++; -- cgit v1.2.3