mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-01-30 12:40:42 +00:00
check for uninitialized variables used in function args
This commit is contained in:
parent
85465efb1d
commit
5da6fbe59c
1 changed files with 2 additions and 1 deletions
|
@ -1648,7 +1648,8 @@ function_expr (expr_t *e1, expr_t *e2)
|
||||||
}
|
}
|
||||||
for (i = arg_count - 1, e = e2; i >= 0; i--, e = e->next) {
|
for (i = arg_count - 1, e = e2; i >= 0; i--, e = e->next) {
|
||||||
type_t *t = get_type (e);
|
type_t *t = get_type (e);
|
||||||
|
|
||||||
|
check_initialized (e);
|
||||||
if (ftype->parm_types[i] == &type_float && e->type == ex_integer) {
|
if (ftype->parm_types[i] == &type_float && e->type == ex_integer) {
|
||||||
e->type = ex_float;
|
e->type = ex_float;
|
||||||
e->e.float_val = e->e.integer_val;
|
e->e.float_val = e->e.integer_val;
|
||||||
|
|
Loading…
Reference in a new issue