mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-03-20 17:31:08 +00:00
real fix for uninitialized functions
This is an imperfect revision of history.
This commit is contained in:
parent
0d14a8f9f3
commit
abf25e0e1c
1 changed files with 1 additions and 1 deletions
|
@ -301,7 +301,7 @@ check_initialized (expr_t *e)
|
|||
|
||||
if (e->type == ex_def
|
||||
&& !(e->e.def->type->type == ev_func
|
||||
&& e->e.def->global)
|
||||
&& !e->e.def->local)
|
||||
&& !(e->e.def->type->type == ev_struct)
|
||||
&& !e->e.def->external
|
||||
&& !e->e.def->initialized) {
|
||||
|
|
Loading…
Reference in a new issue