]> git.xonotic.org Git - xonotic/gmqcc.git/blobdiff - ast.c
for arrays, ast_value will contain several ir_values, ir_v will point to the [0]...
[xonotic/gmqcc.git] / ast.c
diff --git a/ast.c b/ast.c
index 2f218e37a4a776bc33dbeec92bf166a7be515110..f10dbb2f4f0688513a182a0d214e743f99cdc1e6 100644 (file)
--- a/ast.c
+++ b/ast.c
@@ -312,7 +312,9 @@ ast_value* ast_value_new(lex_ctx ctx, const char *name, int t)
     self->uses    = 0;
     memset(&self->constval, 0, sizeof(self->constval));
 
-    self->ir_v    = NULL;
+    self->ir_v           = NULL;
+    self->ir_values      = NULL;
+    self->ir_value_count = 0;
 
     return self;
 }