From d7e90f1c7c08ab88c6e0e7c68e64f0e1ea51893d Mon Sep 17 00:00:00 2001 From: Peter Stephenson Date: Mon, 8 Jun 2020 20:52:53 +0100 Subject: users/24909: Don't clean up special file list too early. When running a function, remove special files used for substitution after the function has run rather than before. --- ChangeLog | 5 +++++ Src/exec.c | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 42060024b..979fa729b 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2020-06-08 Peter Stephenson + + * uwers/24909: Src/exec.c: Don't clean up files used for + substitution until after function has run. + 2020-06-08 Doron Behar * gitlab !14 (fixup): Completion/Linux/Command/_modutils: diff --git a/Src/exec.c b/Src/exec.c index 29f4fc5ca..c72d485b2 100644 --- a/Src/exec.c +++ b/Src/exec.c @@ -3969,8 +3969,8 @@ execcmd_exec(Estate state, Execcmd_params eparams, if (is_shfunc) { /* It's a shell function */ - pipecleanfilelist(filelist, 0); execshfunc((Shfunc) hn, args); + pipecleanfilelist(filelist, 0); } else { /* It's a builtin */ LinkList assigns = (LinkList)0; -- cgit 1.4.1