From: Denis Vlasenko Date: Sat, 18 Apr 2009 11:25:18 +0000 (-0000) Subject: hush: fix thinko in unset_func X-Git-Tag: 1_15_0~320 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=730106767e3a5a6d9c3f9243ffcd6ba0c501f120;p=oweals%2Fbusybox.git hush: fix thinko in unset_func --- diff --git a/shell/hush.c b/shell/hush.c index 1da9707e0..0f93ae62b 100644 --- a/shell/hush.c +++ b/shell/hush.c @@ -2863,6 +2863,7 @@ static void unset_func(const char *name) free(funcp); break; } + funcpp = &funcp->next; } }