diff options
author | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2007-08-16 22:22:24 +0000 |
---|---|---|
committer | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2007-08-16 22:22:24 +0000 |
commit | bef0b1fa361728e144ec97a2a7ab88feb6752c69 (patch) | |
tree | 266edb86fc4affd07f7b3b5d973eaad5ab52d657 /.gdbinit | |
parent | 04176dc21fb74c26a12895319a86eb2c3b138f90 (diff) | |
download | bundler-bef0b1fa361728e144ec97a2a7ab88feb6752c69.tar.gz |
* bignum.c (bigtrunc): RBIGNUM(x)->len may be zero. out of bound
access. [ruby-dev:31404]
* sprintf.c (rb_str_format): small float should not call
rb_dbl2big().
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@13074 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to '.gdbinit')
-rw-r--r-- | .gdbinit | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -2,7 +2,7 @@ define rp if (VALUE)$arg0 & 1 printf "FIXNUM: %d\n", $arg0 >> 1 else - if ((VALUE)$arg0 & ~(~(VALUE)0<<RUBY_SPECIAL_SHIFT)) == SYMBOL_FLAG + if ((VALUE)$arg0 & ~(~(VALUE)0<<RUBY_SPECIAL_SHIFT)) == RUBY_SYMBOL_FLAG printf "SYMBOL(%d)\n", $arg0 >> 8 else if $arg0 == 0 |