[前][次][番号順一覧][スレッド一覧]

ruby-changes:17043

From: nobu <ko1@a...>
Date: Thu, 19 Aug 2010 06:03:52 +0900 (JST)
Subject: [ruby-changes:17043] Ruby:r29040 (trunk): * vm_insnhelper.c (vm_push_frame): initialize block_iseq. a patch

nobu	2010-08-19 06:03:32 +0900 (Thu, 19 Aug 2010)

  New Revision: 29040

  http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=29040

  Log:
    * vm_insnhelper.c (vm_push_frame): initialize block_iseq.  a patch
      from Peter Weldon at [ruby-core:31757].

  Modified files:
    trunk/ChangeLog
    trunk/vm_insnhelper.c

Index: ChangeLog
===================================================================
--- ChangeLog	(revision 29039)
+++ ChangeLog	(revision 29040)
@@ -1,3 +1,8 @@
+Thu Aug 19 06:03:27 2010  Nobuyoshi Nakada  <nobu@r...>
+
+	* 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@m...>
 
 	* array.c (ary_make_shared): revert r29037, it occurs SEGV some
Index: vm_insnhelper.c
===================================================================
--- vm_insnhelper.c	(revision 29039)
+++ vm_insnhelper.c	(revision 29040)
@@ -58,6 +58,7 @@
     cfp->self = self;
     cfp->lfp = lfp;
     cfp->dfp = sp;
+    cfp->block_iseq = 0;
     cfp->proc = 0;
     cfp->me = 0;
 

--
ML: ruby-changes@q...
Info: http://www.atdot.net/~ko1/quickml/

[前][次][番号順一覧][スレッド一覧]