From: Wolfgang (Blub) Bumiller Date: Sun, 11 Nov 2012 20:32:04 +0000 (+0100) Subject: fix an uninitialized value X-Git-Tag: 0.1~19^2~22 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=a0b6008c2e182f2a2fce54c7e8f7f7e4f8b9e2b3;p=xonotic%2Fgmqcc.git fix an uninitialized value --- diff --git a/ast.c b/ast.c index a134be2..9e6aa57 100644 --- a/ast.c +++ b/ast.c @@ -1244,9 +1244,9 @@ bool ast_store_codegen(ast_store *self, ast_function *func, bool lvalue, ir_valu ast_expression_codegen *cgen; ir_value *left, *right; - ast_array_index *ai; ast_value *arr; ast_value *idx; + ast_array_index *ai = NULL; if (lvalue && self->expression.outl) { *out = self->expression.outl;