aboutsummaryrefslogtreecommitdiff
path: root/shell
diff options
context:
space:
mode:
authorRon Yorston <rmy@pobox.com>2023-08-31 12:51:54 +0100
committerRon Yorston <rmy@pobox.com>2023-08-31 12:51:54 +0100
commitf49e467a3986b888d5be3dd5c29ac4f3e21cba0e (patch)
treec99b060740169248d4a0ef32caba99441b04af1f /shell
parentf498ba612f707d80c4c49d0a4fb58fd5c7c1b960 (diff)
parent2cc9d436e80632157b99e18d413a62b2d44d321a (diff)
downloadbusybox-w32-f49e467a3986b888d5be3dd5c29ac4f3e21cba0e.tar.gz
busybox-w32-f49e467a3986b888d5be3dd5c29ac4f3e21cba0e.tar.bz2
busybox-w32-f49e467a3986b888d5be3dd5c29ac4f3e21cba0e.zip
Merge branch 'busybox' into merge
Diffstat (limited to 'shell')
-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 */