From: Denis Vlasenko Date: Tue, 29 Jul 2008 13:57:59 +0000 (-0000) Subject: randomconfig fix X-Git-Tag: 1_12_0~65 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=ff29b4fc42f723b451ce20ea3db8b43409470e82;p=oweals%2Fbusybox.git randomconfig fix --- diff --git a/shell/hush.c b/shell/hush.c index ab067dd26..f65405563 100644 --- a/shell/hush.c +++ b/shell/hush.c @@ -2131,8 +2131,8 @@ static int run_list(struct pipe *pi) /* ctrl-C. We just stop doing whatever we were doing */ bb_putchar('\n'); } - loop_top = NULL; - depth_of_loop = 0; + USE_HUSH_LOOPS(loop_top = NULL;) + USE_HUSH_LOOPS(depth_of_loop = 0;) rcode = 0; goto ret; }