From 5a78270ada10c0d6a085b2ca829f4c4bbfc3616a Mon Sep 17 00:00:00 2001 From: "Wolfgang (Blub) Bumiller" Date: Sat, 18 Aug 2012 16:25:21 +0200 Subject: [PATCH] initialize ast_block->collect properly --- ast.c | 1 + 1 file changed, 1 insertion(+) diff --git a/ast.c b/ast.c index 22c835f..755d0d7 100644 --- a/ast.c +++ b/ast.c @@ -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; } -- 2.39.2