mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* bignum.c (bigdivrem): bignum zero's len should not be 0.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_6@2942 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
753450b7c4
commit
a682b5324b
2 changed files with 5 additions and 1 deletions
|
@ -1,3 +1,7 @@
|
|||
Mon Oct 7 16:43:07 2002 Yukihiro Matsumoto <matz@ruby-lang.org>
|
||||
|
||||
* bignum.c (bigdivrem): bignum zero's len should not be 0.
|
||||
|
||||
Mon Oct 7 15:36:42 2002 Yukihiro Matsumoto <matz@ruby-lang.org>
|
||||
|
||||
* bignum.c (bigdivmod): wrong condition check for Bignum zero.
|
||||
|
|
2
bignum.c
2
bignum.c
|
@ -928,7 +928,7 @@ bigdivrem(x, y, divp, modp)
|
|||
if (modp) { /* just normalize remainder */
|
||||
*modp = rb_big_clone(z);
|
||||
zds = BDIGITS(*modp);
|
||||
while (ny-- && !zds[ny]); ++ny;
|
||||
while (--ny && !zds[ny]); ++ny;
|
||||
if (dd) {
|
||||
t2 = 0; i = ny;
|
||||
while(i--) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue