commit | 8c28fd78495311c985690157eebb06300069ba26 | [log] [tgz] |
---|---|---|
author | Eric Andersen <andersen@codepoet.org> | Sat Dec 09 00:19:30 2000 +0000 |
committer | Eric Andersen <andersen@codepoet.org> | Sat Dec 09 00:19:30 2000 +0000 |
tree | 2421791f8501b4f95ee61312b4953df4190cb26c | |
parent | 7da312058ccf717c2305769ca7d4f379df614530 [diff] [blame] |
Forget to set final argv entry to NULL, breaking sh.c amoung other things...
diff --git a/busybox.c b/busybox.c index c8c060b..8f27dfb 100644 --- a/busybox.c +++ b/busybox.c
@@ -203,6 +203,7 @@ } while(index<=index2) *index++='\0'; + argv[ps_index]=NULL; return (main(argc, argv)); }