aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRon Yorston <rmy@pobox.com>2020-02-04 10:39:21 +0000
committerRon Yorston <rmy@pobox.com>2020-02-04 10:39:21 +0000
commit092ef6dbc4b7feed34fca061612bfc91d7ceb093 (patch)
treec514bfe224b60418c904685552c36a79dc773b2d
parentf860ce1fdbbbeb1334e11969f609d81f3d2b6724 (diff)
downloadbusybox-w32-092ef6dbc4b7feed34fca061612bfc91d7ceb093.tar.gz
busybox-w32-092ef6dbc4b7feed34fca061612bfc91d7ceb093.tar.bz2
busybox-w32-092ef6dbc4b7feed34fca061612bfc91d7ceb093.zip
ash: remove obsolete comment
-rw-r--r--shell/ash.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/shell/ash.c b/shell/ash.c
index 0d59b4864..2a7941702 100644
--- a/shell/ash.c
+++ b/shell/ash.c
@@ -16082,10 +16082,7 @@ forkshell_prepare(struct forkshell *fs)
16082 size = sizeof(struct forkshell) + ds.funcblocksize + ds.funcstringsize; 16082 size = sizeof(struct forkshell) + ds.funcblocksize + ds.funcstringsize;
16083 relocatesize = sizeof(struct forkshell) + ds.funcblocksize; 16083 relocatesize = sizeof(struct forkshell) + ds.funcblocksize;
16084 16084
16085 /* Allocate shared memory region. We allocate twice 'size' to allow 16085 /* Allocate shared memory region */
16086 * for the relocation map. This is an overestimate as the relocation
16087 * map only needs to cover the forkshell structure and funcblock but
16088 * the size of funcstring isn't known separately at this point. */
16089 memset(&sa, 0, sizeof(sa)); 16086 memset(&sa, 0, sizeof(sa));
16090 sa.nLength = sizeof(sa); 16087 sa.nLength = sizeof(sa);
16091 sa.lpSecurityDescriptor = NULL; 16088 sa.lpSecurityDescriptor = NULL;