aboutsummaryrefslogtreecommitdiff
path: root/shell/ash.c
diff options
context:
space:
mode:
Diffstat (limited to 'shell/ash.c')
-rw-r--r--shell/ash.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/shell/ash.c b/shell/ash.c
index 95f399b0b..634f4ce79 100644
--- a/shell/ash.c
+++ b/shell/ash.c
@@ -15860,7 +15860,7 @@ init(void)
15860 int import = 0; 15860 int import = 0;
15861#else 15861#else
15862 /* we will never free this */ 15862 /* we will never free this */
15863 basepf.next_to_pgetc = basepf.buf = ckmalloc(IBUFSIZ); 15863 basepf.next_to_pgetc = basepf.buf = ckzalloc(IBUFSIZ);
15864 basepf.linno = 1; 15864 basepf.linno = 1;
15865 15865
15866 sigmode[SIGCHLD - 1] = S_DFL; /* ensure we install handler even if it is SIG_IGNed */ 15866 sigmode[SIGCHLD - 1] = S_DFL; /* ensure we install handler even if it is SIG_IGNed */