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

* gc.c (rb_gc_mark_frame): should mark frame->node.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@3256 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
matz 2002-12-31 11:44:29 +00:00
parent b491d7a64f
commit 7ca084da85
2 changed files with 10 additions and 0 deletions

View file

@ -52,6 +52,10 @@ Mon Dec 30 21:10:59 2002 WATANABE Hirofumi <eban@ruby-lang.org>
* parse.y (yylex): use strncmp instead of strcmp.
accept "__END__\r\n". ([ruby-dev:19241])
Mon Dec 30 20:32:14 2002 Yukihiro Matsumoto <matz@ruby-lang.org>
* gc.c (rb_gc_mark_frame): should mark frame->node.
Mon Dec 30 19:10:30 2002 Nobuyoshi Nakada <nobu.nokada@softhome.net>
* ext/extmk.rb: split --make argument contains options, assume
@ -149,6 +153,11 @@ Fri Dec 27 13:23:29 2002 Minero Aoki <aamine@loveruby.net>
* lib/fileutils.rb: change coding styles.
Fri Dec 27 09:25:22 2002 ABE Shigeru <shiger-a@nifty.com>
* process.c (rb_proc_times): avoid WindowsXP crash using volatile
variables.
Fri Dec 27 02:56:58 2002 Nobuyoshi Nakada <nobu.nokada@softhome.net>
* instruby.rb: check only `-' option, and use fileutils instead of

1
gc.c
View file

@ -1131,6 +1131,7 @@ rb_gc_mark_frame(frame)
{
mark_locations_array(frame->argv, frame->argc);
rb_gc_mark(frame->cbase);
rb_gc_mark((VALUE)frame->node);
}
#ifdef __GNUC__