summaryrefslogtreecommitdiffstats
path: root/bignum.c
diff options
context:
space:
mode:
authormatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2001-05-11 05:24:59 +0000
committermatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2001-05-11 05:24:59 +0000
commit7dba8bcd19b8468987a7fe4fcd8743c5f834a33e (patch)
tree7e7a184bde865a5d67350923fbee84a5ea115f1e /bignum.c
parentfef19a531b6695fab92927767c8c0af499f9a815 (diff)
downloadruby-7dba8bcd19b8468987a7fe4fcd8743c5f834a33e.tar.gz
ruby-7dba8bcd19b8468987a7fe4fcd8743c5f834a33e.tar.xz
ruby-7dba8bcd19b8468987a7fe4fcd8743c5f834a33e.zip
* bignum.c (bigdivrem): access boundary bug.
* marshal.c (w_object): prohibit dumping out singleton classes. * object.c (rb_mod_to_s): distinguish singleton classes. * variable.c (rb_class2name): it's ok to reveal NilClass, TrueClass, FalseClass. * eval.c (rb_yield_0): preserve and restore ruby_cref as well. * eval.c (is_defined): core dumped during instance_eval for special constants. * eval.c (rb_eval): ditto. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@1389 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 3ddc50c67..c58de5d5b 100644
--- a/bignum.c
+++ b/bignum.c
@@ -920,7 +920,7 @@ bigdivrem(x, y, divp, modp)
if (modp) { /* just normalize remainder */
*modp = rb_big_clone(z);
zds = BDIGITS(*modp);
- while (!zds[ny-1]) ny--;
+ while (ny-- && !zds[ny]); ++ny;
if (dd) {
t2 = 0; i = ny;
while(i--) {
OSZAR »