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

* eval.c (PUSH_FRAME): flags should have been initialized.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@7423 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
matz 2004-11-30 06:10:53 +00:00
parent 9556d9333a
commit c079ee2bce
2 changed files with 3 additions and 0 deletions

View file

@ -4,6 +4,8 @@ Tue Nov 30 14:58:33 2004 WATANABE Hirofumi <eban@ruby-lang.org>
Tue Nov 30 00:49:08 2004 Yukihiro Matsumoto <matz@ruby-lang.org>
* eval.c (PUSH_FRAME): flags should have been initialized.
* eval.c (rb_eval): [ruby-core:03856]
* io.c (rb_io_sysread): use temporary lock. [ruby-dev:24992]

1
eval.c
View file

@ -663,6 +663,7 @@ static unsigned long frame_unique = 0;
_frame.node = ruby_current_node; \
_frame.iter = ruby_iter->iter; \
_frame.argc = 0; \
_frame.flags = 0; \
_frame.uniq = frame_unique++; \
ruby_frame = &_frame