From b5e89e44f12a6e3a42e9515d1d3705d11f9442bf Mon Sep 17 00:00:00 2001 From: ko1 Date: Fri, 15 Aug 2014 10:32:58 +0000 Subject: * array.c (rb_ary_tmp_new): added. This function creates internal use only array (which is completely hided by ObjectSpace.each_object) with filling nil. Otherwise, it can be incldues strange VALUEs. * internal.h: added. * node.h: use rb_ary_tmp_new_fill() for MEMO. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@47189 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- node.h | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'node.h') diff --git a/node.h b/node.h index 9ee07048c2..ffc8b1b739 100644 --- a/node.h +++ b/node.h @@ -468,9 +468,7 @@ typedef struct RNode { #define roomof(x, y) ((sizeof(x) + sizeof(y) - 1) / sizeof(y)) #define MEMO_FOR(type, value) ((type *)RARRAY_PTR(value)) #define NEW_MEMO_FOR(type, value) \ - (rb_ary_set_len(((value) = rb_ary_tmp_new(roomof(type, VALUE))), \ - roomof(type, VALUE)), \ - MEMO_FOR(type, value)) + ((value) = rb_ary_tmp_new_fill(roomof(type, VALUE)), MEMO_FOR(type, value)) RUBY_SYMBOL_EXPORT_BEGIN -- cgit v1.2.3