diff options
| author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2005-10-19 10:26:54 +0000 |
|---|---|---|
| committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2005-10-19 10:26:54 +0000 |
| commit | aeed3beea26651761cda1831ef3ee1544bcbd689 (patch) | |
| tree | bc2c91136a202ffe99fff45cb3bf2efe562e52c5 | |
| parent | c04e4de09eb4c4ace9a0eb822f60878df98a258b (diff) | |
| download | ruby-aeed3beea26651761cda1831ef3ee1544bcbd689.tar.gz ruby-aeed3beea26651761cda1831ef3ee1544bcbd689.tar.xz ruby-aeed3beea26651761cda1831ef3ee1544bcbd689.zip | |
* parse.y (rb_gc_mark_parser): get rid of segfault with old yacc.
fixed: [ruby-dev:27439]
git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8@9416 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
| -rw-r--r-- | ChangeLog | 5 | ||||
| -rw-r--r-- | parse.y | 9 |
2 files changed, 14 insertions, 0 deletions
@@ -1,3 +1,8 @@ +Wed Oct 19 19:26:15 2005 Nobuyoshi Nakada <nobu@ruby-lang.org> + + * parse.y (rb_gc_mark_parser): get rid of segfault with old yacc. + fixed: [ruby-dev:27439] + Wed Oct 19 08:28:32 2005 Nobuyoshi Nakada <nobu@ruby-lang.org> * file.c (rb_file_join): elements may contain null pointer strings. @@ -2467,6 +2467,10 @@ terms : term none : /* none */ {$$ = 0;} ; %% +#ifdef yystacksize +#undef YYMALLOC +#endif + #include "regex.h" #include "util.h" @@ -5756,7 +5760,12 @@ ruby_parser_stack_on_heap() void rb_gc_mark_parser() { +#if defined YYMALLOC rb_gc_mark((VALUE)parser_heap); +#elif defined yystacksize + if (yyvsp) rb_gc_mark_locations((VALUE *)yyvs, (VALUE *)yyvsp); +#endif + if (!ruby_in_compile) return; rb_gc_mark_maybe((VALUE)yylval.node); |
