]> git.xonotic.org Git - xonotic/gmqcc.git/commitdiff
Let's still initialize the 'count' member...
authorWolfgang (Blub) Bumiller <blub@speed.at>
Mon, 17 Dec 2012 14:56:36 +0000 (15:56 +0100)
committerWolfgang (Blub) Bumiller <blub@speed.at>
Mon, 17 Dec 2012 15:00:08 +0000 (16:00 +0100)
ast.c

diff --git a/ast.c b/ast.c
index bdb9408e9d60a59988b178625b32896958338b6d..46f05392501e6d73888dcac66fa83089a05b5225 100644 (file)
--- 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)