diff options
| author | mame <mame@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-01-21 15:33:32 +0000 |
|---|---|---|
| committer | mame <mame@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-01-21 15:33:32 +0000 |
| commit | c06bb92b866e18ec71761a493fd7f8773e308f80 (patch) | |
| tree | 62e8db587744056f804514091704437327a67939 | |
| parent | 1363591ac2237f7823b0a81dc9f046e3eda9f02f (diff) | |
* bignum.c (big_shift): fix a bug that caused infinite loop when
left shifting.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@15160 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
| -rw-r--r-- | ChangeLog | 5 | ||||
| -rw-r--r-- | bignum.c | 2 |
2 files changed, 6 insertions, 1 deletions
@@ -1,3 +1,8 @@ +Tue Jan 22 00:30:08 2008 Yusuke Endoh <mame@tsg.ne.jp> + + * bignum.c (big_shift): fix a bug that caused infinite loop when + left shifting. + Mon Jan 21 20:09:38 2008 Tadayoshi Funaba <tadf@dotrb.org> * lib/date.rb (marshal_load): initialize the cache. @@ -1851,7 +1851,7 @@ static VALUE big_rshift(VALUE, unsigned long); static VALUE big_shift(VALUE x, int n) { if (n < 0) - return big_lshift(x, (unsigned int)n); + return big_lshift(x, (unsigned int)-n); else if (n > 0) return big_rshift(x, (unsigned int)n); return x; |
