From ed6a2bd29f649369beb1b7935cf2625c60581c04 Mon Sep 17 00:00:00 2001 From: matz Date: Mon, 21 May 2001 04:22:54 +0000 Subject: * bignum.c (rb_big2str): t should be protected from GC. * process.c (rb_proc_times): need not to check retrun value from times(2). git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@1438 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- bignum.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'bignum.c') diff --git a/bignum.c b/bignum.c index c58de5d5bb..4100d409c4 100644 --- a/bignum.c +++ b/bignum.c @@ -365,7 +365,7 @@ rb_big2str(x, base) VALUE x; int base; { - VALUE t; + volatile VALUE t; BDIGIT *ds; long i, j, hbase; VALUE ss; @@ -395,7 +395,7 @@ rb_big2str(x, base) else { j = 0; hbase = 0; - rb_raise(rb_eArgError, "bignum cannot treat base %d", base); + rb_raise(rb_eArgError, "Bignum cannot treat base %d", base); } t = rb_big_clone(x); -- cgit v1.2.3