mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* eval.c (rb_thread_save_context): should not recycle scope object used
in a thread. fixed: [ruby-dev:28177] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9781 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
a711b321b7
commit
a5e6541ad6
2 changed files with 6 additions and 0 deletions
|
@ -1,3 +1,8 @@
|
|||
Sat Dec 31 22:57:00 2005 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||
|
||||
* eval.c (rb_thread_save_context): should not recycle scope object used
|
||||
in a thread. fixed: [ruby-dev:28177]
|
||||
|
||||
Sat Dec 31 19:50:38 2005 Hirokazu Yamamoto <ocean@m2.ccsnet.ne.jp>
|
||||
|
||||
* ext/syck/rubyext.c: attribute name was truncated with Rev1.64.
|
||||
|
|
1
eval.c
1
eval.c
|
@ -10131,6 +10131,7 @@ rb_thread_save_context(rb_thread_t th)
|
|||
|
||||
th->frame = ruby_frame;
|
||||
th->scope = ruby_scope;
|
||||
ruby_scope->flags |= SCOPE_DONT_RECYCLE;
|
||||
th->klass = ruby_class;
|
||||
th->wrapper = ruby_wrapper;
|
||||
th->cref = ruby_cref;
|
||||
|
|
Loading…
Reference in a new issue