* 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:
parent
2048950e16
commit
1fdf66ad67
@ -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>
|
Wed Feb 16 15:11:43 2005 GOTOU Yuuzou <gotoyuzo@notwork.org>
|
||||||
|
|
||||||
* ext/openssl/lib/openssl/ssl.rb (OpenSSL::Nonblock#initialize):
|
* ext/openssl/lib/openssl/ssl.rb (OpenSSL::Nonblock#initialize):
|
||||||
|
2
eval.c
2
eval.c
@ -11754,7 +11754,7 @@ rb_thread_start_1()
|
|||||||
ruby_scope = ip->scope;
|
ruby_scope = ip->scope;
|
||||||
ruby_iter = ip->iter;
|
ruby_iter = ip->iter;
|
||||||
ruby_cref = ip->cref;
|
ruby_cref = ip->cref;
|
||||||
ruby_dyna_vars = 0;
|
ruby_dyna_vars = ((struct BLOCK *)DATA_PTR(proc))->dyna_vars;
|
||||||
PUSH_FRAME();
|
PUSH_FRAME();
|
||||||
_frame.iter = ITER_CUR;
|
_frame.iter = ITER_CUR;
|
||||||
PUSH_TAG(PROT_NONE);
|
PUSH_TAG(PROT_NONE);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user