mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-23 04:42:32 +00:00
Fix an uninitialized variable.
This commit is contained in:
parent
2594be8b1b
commit
3b080fcbb0
1 changed files with 1 additions and 1 deletions
|
@ -381,7 +381,7 @@ expr_call (sblock_t *sblock, expr_t *call, operand_t **op)
|
|||
&& a->e.value.type == ev_vector) {
|
||||
sblock = vector_call (sblock, a, param, ind, 0);
|
||||
} else {
|
||||
operand_t *p;
|
||||
operand_t *p = 0;
|
||||
operand_t *arg;
|
||||
sblock = statement_subexpr (sblock, param, &p);
|
||||
arg = p;
|
||||
|
|
Loading…
Reference in a new issue