diff options
Diffstat (limited to 'shell/ash.c')
-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 f8a18cdc5..5c6eb5759 100644 --- a/shell/ash.c +++ b/shell/ash.c | |||
@@ -15713,7 +15713,7 @@ spawn_forkshell(struct forkshell *fs, struct job *jp, union node *n, int mode) | |||
15713 | new->nprocs = jp == NULL ? 0 : jp->nprocs; | 15713 | new->nprocs = jp == NULL ? 0 : jp->nprocs; |
15714 | sprintf(buf, "%p", new->hMapFile); | 15714 | sprintf(buf, "%p", new->hMapFile); |
15715 | argv[2] = buf; | 15715 | argv[2] = buf; |
15716 | ret = mingw_spawn_forkshell(argv); | 15716 | ret = spawnve(P_NOWAIT, bb_busybox_exec_path, (char *const *)argv, environ); |
15717 | CloseHandle(new->hMapFile); | 15717 | CloseHandle(new->hMapFile); |
15718 | UnmapViewOfFile(new); | 15718 | UnmapViewOfFile(new); |
15719 | if (ret == -1) { | 15719 | if (ret == -1) { |