From: Wolfgang (Blub) Bumiller Date: Sat, 18 Aug 2012 14:25:21 +0000 (+0200) Subject: initialize ast_block->collect properly X-Git-Tag: 0.1-rc1~208 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=5a78270ada10c0d6a085b2ca829f4c4bbfc3616a;p=xonotic%2Fgmqcc.git initialize ast_block->collect properly --- 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; }