diff options
| author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2005-12-31 13:57:36 +0000 |
|---|---|---|
| committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2005-12-31 13:57:36 +0000 |
| commit | 3d88eb65dc3de6279730a580ca49045f15bfbb3e (patch) | |
| tree | 3ef90a7e9443c240af9f2d00ec21aba82fddf49f | |
| parent | b0967c33a77f9647dbf8cb250e11f55afa75f7be (diff) | |
| download | ruby-3d88eb65dc3de6279730a580ca49045f15bfbb3e.tar.gz ruby-3d88eb65dc3de6279730a580ca49045f15bfbb3e.tar.xz ruby-3d88eb65dc3de6279730a580ca49045f15bfbb3e.zip | |
* eval.c (rb_thread_save_context): should not recycle scope object used
in a thread. fixed: [ruby-dev:28177]
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@9781 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
| -rw-r--r-- | ChangeLog | 5 | ||||
| -rw-r--r-- | eval.c | 1 |
2 files changed, 6 insertions, 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. @@ -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; |
