From: Denys Vlasenko Date: Mon, 31 Jul 2017 16:06:07 +0000 (+0200) Subject: hush: remove redundant "G_flag_return_in_progress = -1" X-Git-Tag: 1_28_0~265 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=cee603d921594fc779bc26a200dfb010cd62ab92;p=oweals%2Fbusybox.git hush: remove redundant "G_flag_return_in_progress = -1" Signed-off-by: Denys Vlasenko --- diff --git a/shell/hush.c b/shell/hush.c index 5c8e00743..9f946d82f 100644 --- a/shell/hush.c +++ b/shell/hush.c @@ -7109,7 +7109,6 @@ static void exec_function(char ***to_free, G_flag_return_in_progress = -1; IF_HUSH_LOCAL(G.func_nest_level++;) - G_flag_return_in_progress = -1; /* On MMU, funcp->body is always non-NULL */ n = run_list(funcp->body); fflush_all();