From: Wolfgang (Blub) Bumiller Date: Mon, 17 Dec 2012 14:56:36 +0000 (+0100) Subject: Let's still initialize the 'count' member... X-Git-Tag: 0.1.9~91 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=c2857a22e338973f7fa92e869851fcfa171070b4;p=xonotic%2Fgmqcc.git Let's still initialize the 'count' member... --- diff --git a/ast.c b/ast.c index bdb9408..46f0539 100644 --- a/ast.c +++ b/ast.c @@ -73,6 +73,7 @@ static void ast_expression_init(ast_expression *self, self->expression.outr = NULL; self->expression.variadic = false; self->expression.params = NULL; + self->expression.count = 0; } static void ast_expression_delete(ast_expression *self)