summaryrefslogtreecommitdiff
path: root/node.c
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-10-12 12:54:21 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-10-12 12:54:21 +0000
commit0d957a91baa061742a2b41bc899d875263d90ff2 (patch)
tree28945015e8a814aa2c69b4f5d353f6b8e0b3f40f /node.c
parent6c415d0163d6d02e891b668a9adbfb07872b0c20 (diff)
Removed unreachable code
* node.c (rb_ast_dispose): since `ast->node_buffer` is freed in `rb_ast_free()`, it should be always NULL. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@65031 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'node.c')
-rw-r--r--node.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/node.c b/node.c
index 1911b8929b..d81a7319d3 100644
--- a/node.c
+++ b/node.c
@@ -1139,7 +1139,6 @@ void
rb_ast_dispose(rb_ast_t *ast)
{
rb_ast_free(ast);
- if (ast->node_buffer) RB_OBJ_WRITE(ast, &ast->node_buffer->mark_ary, Qnil);
}
void