aboutsummaryrefslogtreecommitdiff
path: root/shell/hush.c
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2018-04-05 13:10:34 +0200
committerDenys Vlasenko <vda.linux@googlemail.com>2018-04-05 13:10:34 +0200
commit4e1dc539e97300c44589eff8baffd12c95a13d5f (patch)
tree0504124afd3da6112d432b1efb3eddeac6655adf /shell/hush.c
parent34f6b12330a13194057b49a74ca14362c2a332fa (diff)
downloadbusybox-w32-4e1dc539e97300c44589eff8baffd12c95a13d5f.tar.gz
busybox-w32-4e1dc539e97300c44589eff8baffd12c95a13d5f.tar.bz2
busybox-w32-4e1dc539e97300c44589eff8baffd12c95a13d5f.zip
hush: "no logic changes" in last commit was not true, fix it up
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to '')
-rw-r--r--shell/hush.c3
1 files changed, 2 insertions, 1 deletions
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)
8419 */ 8419 */
8420 rcode = run_nofork_applet(n, argv_expanded); 8420 rcode = run_nofork_applet(n, argv_expanded);
8421 } 8421 }
8422 } 8422 } else
8423 goto must_fork;
8423 8424
8424 leave_var_nest_level(); 8425 leave_var_nest_level();
8425 add_vars(old_vars); 8426 add_vars(old_vars);