* bignum.c (rb_big2str0): wrong allocation length.
[ruby-dev:29710] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@11242 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
5ece4a8da5
commit
7e69efba5e
@ -1,3 +1,8 @@
|
||||
Mon Oct 30 18:35:33 2006 Yukihiro Matsumoto <matz@ruby-lang.org>
|
||||
|
||||
* bignum.c (rb_big2str0): wrong allocation length.
|
||||
[ruby-dev:29710]
|
||||
|
||||
Mon Oct 30 12:34:02 2006 Yukihiro Matsumoto <matz@ruby-lang.org>
|
||||
|
||||
* eval.c (rb_eval): fix commit miss. [ruby-dev:29707]
|
||||
|
2
bignum.c
2
bignum.c
@ -607,7 +607,7 @@ rb_big2str0(VALUE x, int base, int trim)
|
||||
j /= 3;
|
||||
break;
|
||||
case 10: case 11: case 12: case 13: case 14: case 15:
|
||||
j = j * 241L / 800;
|
||||
j = j * 241L / 800 + 1;
|
||||
break;
|
||||
case 16: case 17: case 18: case 19: case 20: case 21:
|
||||
case 22: case 23: case 24: case 25: case 26: case 27:
|
||||
|
Loading…
x
Reference in New Issue
Block a user