aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--shell/ash.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/shell/ash.c b/shell/ash.c
index 634f4ce79..a19a3c686 100644
--- a/shell/ash.c
+++ b/shell/ash.c
@@ -16130,7 +16130,7 @@ int ash_main(int argc UNUSED_PARAM, char **argv)
16130 INIT_G_memstack(); 16130 INIT_G_memstack();
16131 16131
16132 /* from init() */ 16132 /* from init() */
16133 basepf.next_to_pgetc = basepf.buf = ckmalloc(IBUFSIZ); 16133 basepf.next_to_pgetc = basepf.buf = ckzalloc(IBUFSIZ);
16134 basepf.linno = 1; 16134 basepf.linno = 1;
16135 16135
16136 if (argc == 3 && !strcmp(argv[1], "--fs")) { 16136 if (argc == 3 && !strcmp(argv[1], "--fs")) {