mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-10 23:32:09 +00:00
Fix an uninitialized variable.
It was never a propblem until an attempt to dump empty sblocks was made.
This commit is contained in:
parent
d76e2a8423
commit
69543cf85b
1 changed files with 1 additions and 1 deletions
|
@ -436,7 +436,7 @@ sblock_t **
|
|||
flow_get_targetlist (statement_t *s)
|
||||
{
|
||||
sblock_t **target_list;
|
||||
int count, i;
|
||||
int count = 0, i;
|
||||
def_t *table = 0;
|
||||
expr_t *e;
|
||||
|
||||
|
|
Loading…
Reference in a new issue