]> git.xonotic.org Git - xonotic/gmqcc.git/commitdiff
initialize ast_expression_common.outl/outr
authorWolfgang (Blub) Bumiller <blub@speed.at>
Mon, 13 Aug 2012 17:40:06 +0000 (19:40 +0200)
committerWolfgang (Blub) Bumiller <blub@speed.at>
Mon, 13 Aug 2012 17:40:06 +0000 (19:40 +0200)
ast.c

diff --git a/ast.c b/ast.c
index 5dfad22a408a57c84f939ab6c3d6e0022b3e318b..ffefb3f6b75ffbd8889e133b1ea92c945ec40a77 100644 (file)
--- a/ast.c
+++ b/ast.c
@@ -58,6 +58,8 @@ static void ast_expression_init(ast_expression *self,
     self->expression.codegen = codegen;
     self->expression.vtype   = TYPE_VOID;
     self->expression.next    = NULL;
+    self->expression.outl    = NULL;
+    self->expression.outr    = NULL;
     MEM_VECTOR_INIT(&self->expression, params);
 }