diff options
Diffstat (limited to 'Src/exec.c')
-rw-r--r-- | Src/exec.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/Src/exec.c b/Src/exec.c index 698591475..8d26e604a 100644 --- a/Src/exec.c +++ b/Src/exec.c @@ -3070,7 +3070,10 @@ execfuncdef(Estate state, int do_exec) LinkList names; end = beg + WC_FUNCDEF_SKIP(state->pc[-1]); - names = ecgetlist(state, *state->pc++, EC_DUPTOK, &htok); + if (!(names = ecgetlist(state, *state->pc++, EC_DUPTOK, &htok))) { + state->pc = end; + return 0; + } nprg = end - beg; sbeg = *state->pc++; nstrs = *state->pc++; |