1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

iseq.c (iseq_data_to_ary): add missing GC guard

It seems possible for a compiler to optimize away nbody
because we only access it via RARRAY_AREF and RARRAY_LEN
macros.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@48597 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
normal 2014-11-27 02:48:14 +00:00
parent 9c6deac2d1
commit a7361f9c64
2 changed files with 5 additions and 0 deletions

View file

@ -1,3 +1,7 @@
Thu Nov 27 11:45:33 2014 Eric Wong <e@80x24.org>
* iseq.c (iseq_data_to_ary): add missing GC guard
Thu Nov 27 10:51:59 2014 Koichi Sasada <ko1@atdot.net>
* vm_core.h: add rb_thread_t::local_storage_recursive_hash

1
iseq.c
View file

@ -1889,6 +1889,7 @@ iseq_data_to_ary(rb_iseq_t *iseq)
rb_ary_push(body, ary);
pos += RARRAY_LENINT(ary); /* reject too huge data */
}
RB_GC_GUARD(nbody);
st_free_table(labels_table);