From c6cd0174cd29d108debe35dd3a882212448f2993 Mon Sep 17 00:00:00 2001 From: usa Date: Mon, 28 Jan 2008 15:12:43 +0000 Subject: * bignum.c (rb_big2str0): should be US-ASCII. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@15298 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 4 ++++ bignum.c | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 26b516cdd..88ad50f40 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +Tue Jan 29 00:12:17 2008 NAKAMURA Usaku + + * bignum.c (rb_big2str0): should be US-ASCII. + Tue Jan 29 00:10:00 2008 Nobuyoshi Nakada * misc/ruby-mode.el (ruby-mode-set-encoding): updates magic comment. diff --git a/bignum.c b/bignum.c index 669e42233..4a4bdbd9d 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) ? '+' : '-'; -- cgit