diff options
Diffstat (limited to 'shell')
-rw-r--r-- | shell/ash.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/shell/ash.c b/shell/ash.c index 3e741d7d2..ad1e5ba7e 100644 --- a/shell/ash.c +++ b/shell/ash.c | |||
@@ -16016,7 +16016,7 @@ spawn_forkshell(struct forkshell *fs, struct job *jp, union node *n, int mode) | |||
16016 | new->nprocs = jp == NULL ? 0 : jp->nprocs; | 16016 | new->nprocs = jp == NULL ? 0 : jp->nprocs; |
16017 | sprintf(buf, "%p", new->hMapFile); | 16017 | sprintf(buf, "%p", new->hMapFile); |
16018 | argv[2] = buf; | 16018 | argv[2] = buf; |
16019 | ret = spawnve(P_NOWAIT, bb_busybox_exec_path, (char *const *)argv, environ); | 16019 | ret = spawnve(P_NOWAIT, bb_busybox_exec_path, (char *const *)argv, NULL); |
16020 | CloseHandle(new->hMapFile); | 16020 | CloseHandle(new->hMapFile); |
16021 | UnmapViewOfFile(new); | 16021 | UnmapViewOfFile(new); |
16022 | if (ret == -1) { | 16022 | if (ret == -1) { |