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 e1d93da73..771fc8bf9 100644
--- a/shell/ash.c
+++ b/shell/ash.c
@@ -14484,7 +14484,7 @@ static NOINLINE void
14484init(void) 14484init(void)
14485{ 14485{
14486 /* we will never free this */ 14486 /* we will never free this */
14487 basepf.next_to_pgetc = basepf.buf = ckmalloc(IBUFSIZ); 14487 basepf.next_to_pgetc = basepf.buf = ckzalloc(IBUFSIZ);
14488 basepf.linno = 1; 14488 basepf.linno = 1;
14489 14489
14490 sigmode[SIGCHLD - 1] = S_DFL; /* ensure we install handler even if it is SIG_IGNed */ 14490 sigmode[SIGCHLD - 1] = S_DFL; /* ensure we install handler even if it is SIG_IGNed */