aboutsummaryrefslogtreecommitdiff
path: root/shell
diff options
context:
space:
mode:
Diffstat (limited to 'shell')
-rw-r--r--shell/ash.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/shell/ash.c b/shell/ash.c
index b71c749aa..441da4d85 100644
--- a/shell/ash.c
+++ b/shell/ash.c
@@ -4306,6 +4306,7 @@ static BOOL WINAPI ctrl_handler(DWORD dwCtrlType)
4306{ 4306{
4307 if (dwCtrlType == CTRL_C_EVENT || dwCtrlType == CTRL_BREAK_EVENT) { 4307 if (dwCtrlType == CTRL_C_EVENT || dwCtrlType == CTRL_BREAK_EVENT) {
4308 SetEvent(hSIGINT); 4308 SetEvent(hSIGINT);
4309 pending_int = 1;
4309 return TRUE; 4310 return TRUE;
4310 } 4311 }
4311 return FALSE; 4312 return FALSE;
@@ -4369,6 +4370,7 @@ waitpid_child(int *status, int wait_flags)
4369 if (!idx) { /* hSIGINT */ 4370 if (!idx) { /* hSIGINT */
4370 int i; 4371 int i;
4371 ResetEvent(hSIGINT); 4372 ResetEvent(hSIGINT);
4373 pending_int = 0;
4372 for (i = 1; i < pid_nr; i++) 4374 for (i = 1; i < pid_nr; i++)
4373 TerminateProcess(proclist[i], 1); 4375 TerminateProcess(proclist[i], 1);
4374 pid = pidlist[1]; 4376 pid = pidlist[1];
@@ -10282,6 +10284,7 @@ evalcommand(union node *cmd, int flags)
10282 /* No, forking off a child is necessary */ 10284 /* No, forking off a child is necessary */
10283 struct forkshell fs; 10285 struct forkshell fs;
10284 10286
10287 INT_OFF;
10285 memset(&fs, 0, sizeof(fs)); 10288 memset(&fs, 0, sizeof(fs));
10286 fs.fpid = FS_SHELLEXEC; 10289 fs.fpid = FS_SHELLEXEC;
10287 fs.argv = argv; 10290 fs.argv = argv;
@@ -14492,6 +14495,7 @@ forkshell_shellexec(struct forkshell *fs)
14492 char **argv = fs->argv; 14495 char **argv = fs->argv;
14493 char *path = fs->string; 14496 char *path = fs->string;
14494 14497
14498 FORCE_INT_ON;
14495 listsetvar(varlist, VEXPORT|VSTACK); 14499 listsetvar(varlist, VEXPORT|VSTACK);
14496 shellexec(argv[0], argv, path, idx); 14500 shellexec(argv[0], argv, path, idx);
14497} 14501}