45583/0001: internal: Remove a redundant assignment.

The value is overwritten five lines below, without being read in the interim.
This commit is contained in:
Daniel Shahaf 2020-03-18 19:42:08 +00:00
parent fb3ef09f2d
commit e94e828efd
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2020-03-22 Daniel Shahaf <d.s@daniel.shahaf.name>
* 45583/0001: Src/exec.c: internal: Remove a redundant
assignment.
2020-03-20 Daniel Shahaf <d.s@daniel.shahaf.name>
* unposted: Src/Builtins/rlimits.c: Deconfuse $EDITOR's balanced

View File

@ -5166,7 +5166,6 @@ execfuncdef(Estate state, Eprog redir_prog)
end = beg + WC_FUNCDEF_SKIP(state->pc[-1]);
names = ecgetlist(state, *state->pc++, EC_DUPTOK, &htok);
nprg = end - beg;
sbeg = *state->pc++;
nstrs = *state->pc++;
npats = *state->pc++;