From 5a00a61681fa8d400507940600151068e69ca1b9 Mon Sep 17 00:00:00 2001 From: kosaki Date: Thu, 27 Jan 2011 12:58:44 +0000 Subject: * bignum.c (rb_str_to_inum): get rid of too huge alloca(). git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@30673 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- bignum.c | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) (limited to 'bignum.c') diff --git a/bignum.c b/bignum.c index ede0de6523..b558ab3b29 100644 --- a/bignum.c +++ b/bignum.c @@ -734,6 +734,8 @@ rb_str_to_inum(VALUE str, int base, int badcheck) { char *s; long len; + VALUE v = 0; + VALUE ret; StringValue(str); if (badcheck) { @@ -745,14 +747,17 @@ rb_str_to_inum(VALUE str, int base, int badcheck) if (s) { len = RSTRING_LEN(str); if (s[len]) { /* no sentinel somehow */ - char *p = ALLOCA_N(char, len+1); + char *p = ALLOCV(v, len+1); MEMCPY(p, s, char, len); p[len] = '\0'; s = p; } } - return rb_cstr_to_inum(s, base, badcheck); + ret = rb_cstr_to_inum(s, base, badcheck); + if (v) + ALLOCV_END(v); + return ret; } #if HAVE_LONG_LONG -- cgit v1.2.3