summaryrefslogtreecommitdiffstats
path: root/iseq.c
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-02-26 04:23:21 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-02-26 04:23:21 +0000
commitf9c9e7ac0abd05c5773433601ca8bfe314cbf73f (patch)
tree4731d0d426d905545b924a64be9ba460094f28b2 /iseq.c
parent47a374e3f7e7768118074a19b16dc4e7bd678aa9 (diff)
downloadruby-f9c9e7ac0abd05c5773433601ca8bfe314cbf73f.tar.gz
ruby-f9c9e7ac0abd05c5773433601ca8bfe314cbf73f.tar.xz
ruby-f9c9e7ac0abd05c5773433601ca8bfe314cbf73f.zip
* iseq.c (cdhash_each): resurrects internal literals.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@22640 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'iseq.c')
-rw-r--r--iseq.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/iseq.c b/iseq.c
index 0385e214b..b9949643b 100644
--- a/iseq.c
+++ b/iseq.c
@@ -1018,7 +1018,7 @@ exception_type2symbol(VALUE type)
static int
cdhash_each(VALUE key, VALUE value, VALUE ary)
{
- rb_ary_push(ary, key);
+ rb_ary_push(ary, obj_resurrect(key));
rb_ary_push(ary, value);
return ST_CONTINUE;
}