From 9188504af59ac09ade3ac0b37807edbb190084cd Mon Sep 17 00:00:00 2001 From: usa Date: Thu, 4 Apr 2013 07:22:49 +0000 Subject: * ext/objspace/objspace.c (count_nodes): fix key for unknown node. based on a patch by tmm1 (Aman Gupta) in [ruby-core:53130] [Bug #8014] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_9_3@40099 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ext/objspace/objspace.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ext') diff --git a/ext/objspace/objspace.c b/ext/objspace/objspace.c index 66e33a38c4..fd08158676 100644 --- a/ext/objspace/objspace.c +++ b/ext/objspace/objspace.c @@ -531,7 +531,7 @@ count_nodes(int argc, VALUE *argv, VALUE os) COUNT_NODE(NODE_LAMBDA); COUNT_NODE(NODE_OPTBLOCK); #undef COUNT_NODE - default: node = INT2FIX(nodes[i]); + default: node = INT2FIX(i); } rb_hash_aset(hash, node, SIZET2NUM(nodes[i])); } -- cgit v1.2.3