diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2019-01-25 11:55:54 +0200 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2019-01-25 11:55:54 +0200 |
commit | eea77e4b393b7c1841da887f590b5f5eab964ad4 (patch) | |
tree | eb0e955851fbdd85250e12fbfaa5ec390d1088f9 /interpret.h | |
parent | 48f4822b0602c44aacd418f36ff35645e8379b8e (diff) | |
parent | fda51ca6fd0d9ad93bead9887ded0b07c90680fb (diff) | |
download | egawk-eea77e4b393b7c1841da887f590b5f5eab964ad4.tar.gz egawk-eea77e4b393b7c1841da887f590b5f5eab964ad4.tar.bz2 egawk-eea77e4b393b7c1841da887f590b5f5eab964ad4.zip |
Merge branch 'feature/fix-ns-memleak'
Diffstat (limited to 'interpret.h')
-rw-r--r-- | interpret.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/interpret.h b/interpret.h index e9896672..720b583a 100644 --- a/interpret.h +++ b/interpret.h @@ -1108,7 +1108,7 @@ match_re: ni = setup_frame(pc); JUMPTO(ni); /* Op_func */ } - f = lookup(t1->stptr, true); + f = lookup(t1->stptr); } if (f == NULL) { @@ -1172,7 +1172,7 @@ match_re: /* retrieve function definition node */ f = pc->func_body; if (f == NULL) { - f = lookup(pc->func_name, true); + f = lookup(pc->func_name); if (f == NULL || (f->type != Node_func && f->type != Node_ext_func)) fatal(_("function `%s' not defined"), pc->func_name); pc->func_body = f; /* save for next call */ |