aboutsummaryrefslogtreecommitdiffstats
path: root/parse.y
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-03-18 18:09:52 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-03-18 18:09:52 +0000
commit04eb614251308b570aedfef96712a8d87a294d7d (patch)
treea206625000a02468de95d85ac4263bed206f8c1e /parse.y
parent06037b54af05d65b2fcda359a455d546bbcda667 (diff)
downloadruby-04eb614251308b570aedfef96712a8d87a294d7d.tar.gz
parse.y: mark debug_buffer
* parse.y (parser_mark): mark debug_buffer. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@54185 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'parse.y')
-rw-r--r--parse.y1
1 files changed, 1 insertions, 0 deletions
diff --git a/parse.y b/parse.y
index 4303bea5b2..f3319d18e1 100644
--- a/parse.y
+++ b/parse.y
@@ -10824,6 +10824,7 @@ parser_mark(void *ptr)
rb_gc_mark(parser->result);
rb_gc_mark(parser->parsing_thread);
#endif
+ rb_gc_mark(parser->debug_buffer);
#ifdef YYMALLOC
rb_gc_mark((VALUE)parser->heap);
#endif