From 2f726a497b6e853f7e2c4e0b5c83cb63932841bc Mon Sep 17 00:00:00 2001 From: Bill Currie Date: Wed, 19 Feb 2020 02:30:50 +0900 Subject: [PATCH] Fix segfault in unlimited params --- tools/qfcc/source/function.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/tools/qfcc/source/function.c b/tools/qfcc/source/function.c index 884dce1da..4d3a617e9 100644 --- a/tools/qfcc/source/function.c +++ b/tools/qfcc/source/function.c @@ -330,8 +330,9 @@ find_function (expr_t *fexpr, expr_t *params) return e; type.t.func.num_params++; } - if (type.t.func.num_params > MAX_PARMS) - return fexpr; + i = type.t.func.num_params * sizeof (type_t); + type.t.func.param_types = alloca(i); + memset (type.t.func.param_types, 0, i); for (i = 0, e = params; e; i++, e = e->next) { type.t.func.param_types[type.t.func.num_params - 1 - i] = get_type (e); if (e->type == ex_error)