From: Denys Vlasenko Date: Thu, 5 Apr 2018 11:10:34 +0000 (+0200) Subject: hush: "no logic changes" in last commit was not true, fix it up X-Git-Tag: 1_29_0~140 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=4e1dc539e97300c44589eff8baffd12c95a13d5f;p=oweals%2Fbusybox.git hush: "no logic changes" in last commit was not true, fix it up Signed-off-by: Denys Vlasenko --- diff --git a/shell/hush.c b/shell/hush.c index 3ad6a9724..4740929e8 100644 --- a/shell/hush.c +++ b/shell/hush.c @@ -8419,7 +8419,8 @@ static NOINLINE int run_pipe(struct pipe *pi) */ rcode = run_nofork_applet(n, argv_expanded); } - } + } else + goto must_fork; leave_var_nest_level(); add_vars(old_vars);