initialize ast_block->collect properly

This commit is contained in:
Wolfgang (Blub) Bumiller 2012-08-18 16:25:21 +02:00
parent 68e4a937f2
commit 5a78270ada

1
ast.c
View file

@ -557,6 +557,7 @@ ast_block* ast_block_new(lex_ctx ctx)
MEM_VECTOR_INIT(self, locals);
MEM_VECTOR_INIT(self, exprs);
MEM_VECTOR_INIT(self, collect);
return self;
}