summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rw-r--r--enum.c1
2 files changed, 5 insertions, 1 deletions
@@ -1,4 +1,7 @@
-Fri Feb 17 13:24:43 2012 Nobuyoshi Nakada <[email protected]>
* enum.c: move work variables to objects not to let called blocks
access stack area out of scope. [Bug #5801]
@@ -1828,6 +1828,7 @@ enum_each_slice(VALUE obj, VALUE n)
ary = rb_ary_new2(size);
memo = NEW_MEMO(ary, 0, size);
rb_block_call(obj, id_each, 0, 0, each_slice_i, (VALUE)memo);
if (RARRAY_LEN(ary) > 0) rb_yield(ary);
return Qnil;