mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* vm_insnhelper.c (vm_push_frame): initialize block_iseq. a patch
from Peter Weldon at [ruby-core:31757]. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@29040 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
354e376028
commit
eba16d7444
2 changed files with 6 additions and 0 deletions
|
@ -1,3 +1,8 @@
|
|||
Thu Aug 19 06:03:27 2010 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||
|
||||
* vm_insnhelper.c (vm_push_frame): initialize block_iseq. a patch
|
||||
from Peter Weldon at [ruby-core:31757].
|
||||
|
||||
Wed Aug 18 19:08:17 2010 Kenta Murata <mrkn@mrkn.jp>
|
||||
|
||||
* array.c (ary_make_shared): revert r29037, it occurs SEGV some
|
||||
|
|
|
@ -58,6 +58,7 @@ vm_push_frame(rb_thread_t * th, const rb_iseq_t * iseq,
|
|||
cfp->self = self;
|
||||
cfp->lfp = lfp;
|
||||
cfp->dfp = sp;
|
||||
cfp->block_iseq = 0;
|
||||
cfp->proc = 0;
|
||||
cfp->me = 0;
|
||||
|
||||
|
|
Loading…
Reference in a new issue