Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.busybox.net/busybox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatt Kraai <kraai@debian.org>2001-04-04 21:50:04 +0400
committerMatt Kraai <kraai@debian.org>2001-04-04 21:50:04 +0400
commit2129f97cd9502b731f6489e4c8be54fd44affc1d (patch)
tree8d5a7542b1b51bf58de7383f9748971d2c2bcb06 /shell/lash.c
parent3f98040554313a50ba68c60f43cd8c4a987a0d24 (diff)
Avoid segfault when export is invoked with no arguments. Thanks to
Gennady Feldman.
Diffstat (limited to 'shell/lash.c')
-rw-r--r--shell/lash.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/shell/lash.c b/shell/lash.c
index 28015cbb3..89325b63d 100644
--- a/shell/lash.c
+++ b/shell/lash.c
@@ -426,6 +426,7 @@ static int builtin_export(struct child_prog *child)
for (e = environ; *e; e++) {
printf( "%s\n", *e);
}
+ return 0;
}
res = putenv(v);
if (res)