summaryrefslogtreecommitdiff
path: root/bignum.c
diff options
context:
space:
mode:
authorusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-01-28 15:12:43 +0000
committerusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-01-28 15:12:43 +0000
commita9e23128061268b7823eeb701be9bea959a3d527 (patch)
tree13b2266a1bddedd5bb79b07494235582269da04e /bignum.c
parentf7ed47355e63926e212fe0a72e5d0b31873290d8 (diff)
* bignum.c (rb_big2str0): should be US-ASCII.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@15298 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'bignum.c')
-rw-r--r--bignum.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/bignum.c b/bignum.c
index 669e422331..4a4bdbd9d4 100644
--- a/bignum.c
+++ b/bignum.c
@@ -912,7 +912,7 @@ rb_big2str0(VALUE x, int base, int trim)
n2 = big2str_find_n1(x, base);
n1 = (n2 + 1) / 2;
- ss = rb_str_new(0, n2 + 1); /* plus one for sign */
+ ss = rb_usascii_str_new(0, n2 + 1); /* plus one for sign */
ptr = RSTRING_PTR(ss);
ptr[0] = RBIGNUM_SIGN(x) ? '+' : '-';