diff options
author | Maria Matejka <mq@ucw.cz> | 2021-08-25 22:20:48 +0200 |
---|---|---|
committer | Maria Matejka <mq@ucw.cz> | 2021-09-10 18:11:28 +0200 |
commit | 2c13759136951ef0e70a3e3c2b2d3c9a387f7ed9 (patch) | |
tree | 51a9341babfae19ab427438e10e9a43fe1d3f1ea /filter/f-inst.c | |
parent | ceef6de459b25d8fcc5dd416e0cecf179bd243e7 (diff) |
Reducing filter stack size to allow for lesser thread stack size
Diffstat (limited to 'filter/f-inst.c')
-rw-r--r-- | filter/f-inst.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/filter/f-inst.c b/filter/f-inst.c index b876a937..7c757e74 100644 --- a/filter/f-inst.c +++ b/filter/f-inst.c @@ -1003,6 +1003,7 @@ curline.vbase = curline.ventry; /* Storage for local variables */ + f_vcnt_check_overflow(sym->function->vars); memset(&(fstk->vstk[fstk->vcnt]), 0, sizeof(struct f_val) * sym->function->vars); fstk->vcnt += sym->function->vars; } |