mirror of
https://github.com/DarkPlacesEngine/gmqcc.git
synced 2025-03-23 11:11:22 +00:00
fix an uninitialized value
This commit is contained in:
parent
a78cdd5366
commit
a0b6008c2e
1 changed files with 1 additions and 1 deletions
2
ast.c
2
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;
|
||||
|
|
Loading…
Reference in a new issue