diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2009-04-18 11:25:18 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2009-04-18 11:25:18 +0000 |
commit | 730106767e3a5a6d9c3f9243ffcd6ba0c501f120 (patch) | |
tree | 4596a2fad6a222e309496892f0fea913cee81717 | |
parent | 40e84374ec658ab44e3065b170d268b0ea0cbb27 (diff) | |
download | busybox-w32-730106767e3a5a6d9c3f9243ffcd6ba0c501f120.tar.gz busybox-w32-730106767e3a5a6d9c3f9243ffcd6ba0c501f120.tar.bz2 busybox-w32-730106767e3a5a6d9c3f9243ffcd6ba0c501f120.zip |
hush: fix thinko in unset_func
-rw-r--r-- | shell/hush.c | 1 |
1 files changed, 1 insertions, 0 deletions
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) | |||
2863 | free(funcp); | 2863 | free(funcp); |
2864 | break; | 2864 | break; |
2865 | } | 2865 | } |
2866 | funcpp = &funcp->next; | ||
2866 | } | 2867 | } |
2867 | } | 2868 | } |
2868 | 2869 | ||