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

* eval.c (rb_thread_start_1): outer block variables wasn't linked to

threads.  fixed: [ruby-dev:25700]


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@7980 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2005-02-16 14:54:22 +00:00
parent 2048950e16
commit 1fdf66ad67
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,8 @@
Wed Feb 16 23:54:14 2005 Nobuyoshi Nakada <nobu@ruby-lang.org>
* eval.c (rb_thread_start_1): outer block variables wasn't linked to
threads. fixed: [ruby-dev:25700]
Wed Feb 16 15:11:43 2005 GOTOU Yuuzou <gotoyuzo@notwork.org>
* ext/openssl/lib/openssl/ssl.rb (OpenSSL::Nonblock#initialize):

2
eval.c
View file

@ -11754,7 +11754,7 @@ rb_thread_start_1()
ruby_scope = ip->scope;
ruby_iter = ip->iter;
ruby_cref = ip->cref;
ruby_dyna_vars = 0;
ruby_dyna_vars = ((struct BLOCK *)DATA_PTR(proc))->dyna_vars;
PUSH_FRAME();
_frame.iter = ITER_CUR;
PUSH_TAG(PROT_NONE);