mirror of
https://github.com/reactos/reactos.git
synced 2025-04-04 20:50:41 +00:00
[CMD] ExecutePipeline() returns the last error level (set to process exit code).
CORE-13974 This should fix situations where (for example): command_1 | command_2 && echo Succeeded should *NOT* run "echo Succeeded" if any of the command_1 or command_2 has failed. This also makes the ExecutePipeline() function on par with the other "ExecuteXXX()" helpers. Problem diagnosed by Doug Lyons; patch inspired by contributor 'cagey45'.
This commit is contained in:
parent
0701527f20
commit
56a19b1439
1 changed files with 5 additions and 3 deletions
|
@ -636,7 +636,7 @@ ExecuteAsync(PARSED_COMMAND *Cmd)
|
|||
return prci.hProcess;
|
||||
}
|
||||
|
||||
static VOID
|
||||
static INT
|
||||
ExecutePipeline(PARSED_COMMAND *Cmd)
|
||||
{
|
||||
#ifdef FEATURE_REDIRECTION
|
||||
|
@ -708,7 +708,7 @@ ExecutePipeline(PARSED_COMMAND *Cmd)
|
|||
|
||||
while (--nProcesses >= 0)
|
||||
CloseHandle(hProcess[nProcesses]);
|
||||
return;
|
||||
return nErrorLevel;
|
||||
|
||||
failed:
|
||||
if (hInput)
|
||||
|
@ -721,6 +721,8 @@ failed:
|
|||
SetStdHandle(STD_INPUT_HANDLE, hOldConIn);
|
||||
SetStdHandle(STD_OUTPUT_HANDLE, hOldConOut);
|
||||
#endif
|
||||
|
||||
return nErrorLevel;
|
||||
}
|
||||
|
||||
INT
|
||||
|
@ -771,7 +773,7 @@ ExecuteCommand(PARSED_COMMAND *Cmd)
|
|||
Ret = ExecuteCommand(Sub->Next);
|
||||
break;
|
||||
case C_PIPE:
|
||||
ExecutePipeline(Cmd);
|
||||
Ret = ExecutePipeline(Cmd);
|
||||
break;
|
||||
case C_IF:
|
||||
Ret = ExecuteIf(Cmd);
|
||||
|
|
Loading…
Reference in a new issue