summaryrefslogtreecommitdiff
path: root/shell/hush.c
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2007-05-10 23:05:28 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2007-05-10 23:05:28 +0000
commit53079d494ef0c1fec481b062b3614c45e60eb057 (patch)
tree38fea7094e87fa66c31785ee5d6918da19a57061 /shell/hush.c
parent2b54aaa9bf38eedc3c35604e19ae5415f6e9f2df (diff)
downloadbusybox-w32-53079d494ef0c1fec481b062b3614c45e60eb057.tar.gz
busybox-w32-53079d494ef0c1fec481b062b3614c45e60eb057.tar.bz2
busybox-w32-53079d494ef0c1fec481b062b3614c45e60eb057.zip
hush: fix recent breakage (VAR=VAL stopped working)
Diffstat (limited to 'shell/hush.c')
-rw-r--r--shell/hush.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/shell/hush.c b/shell/hush.c
index 7afcfbda1..8ffb117de 100644
--- a/shell/hush.c
+++ b/shell/hush.c
@@ -2420,7 +2420,7 @@ static int set_local_var(const char *s, int flg_export)
2420 result = -1; 2420 result = -1;
2421 } else { 2421 } else {
2422 cur->name = strdup(name); 2422 cur->name = strdup(name);
2423 if (cur->name) { 2423 if (!cur->name) {
2424 free(cur); 2424 free(cur);
2425 result = -1; 2425 result = -1;
2426 } else { 2426 } else {