Remove ensureNoPipeIfWait, possible source of wrong report like #459

https://github.com/Basile-z/dexed/issues/459
This commit is contained in:
Basile Burg 2019-04-10 07:21:10 +02:00
parent 8e11e89ba0
commit 09d017733d
4 changed files with 1 additions and 15 deletions

View File

@ -811,7 +811,6 @@ begin
prc.CurrentDirectory := fSymStringExpander.expand(prc.CurrentDirectory)
else
prc.CurrentDirectory:= chd;
ensureNoPipeIfWait(prc);
prc.Execute;
while prc.Running do
if poUsePipes in prc.Options then

View File

@ -250,11 +250,6 @@ type
*)
procedure killProcess(var process: TAsyncProcess);
(**
* Ensures that the i/o process pipes are not redirected if it waits on exit.
*)
procedure ensureNoPipeIfWait(process: TProcess);
(**
* Returns true if ExeName is already running.
*)
@ -1081,13 +1076,6 @@ begin
process := nil;
end;
procedure ensureNoPipeIfWait(process: TProcess);
begin
if not (poWaitonExit in process.Options) then
exit;
process.Options := process.Options - [poStderrToOutPut, poUsePipes];
end;
function getLineEndingLength(const fname: string): byte;
var
value: char = #0;

View File

@ -3171,7 +3171,7 @@ begin
fRunProc := TDexedProcess.Create(nil);
if redirect then
begin
fRunProc.Options := [poStderrToOutPut, poUsePipes];
fRunProc.Options := [poStderrToOutPut, poUsePipes, poWaitOnExit];
fRunProc.ShowWindow := swoHIDE;
fRunProc.OnReadData := @asyncprocOutput;
fRunProc.OnTerminate:= @asyncprocTerminate;

View File

@ -250,7 +250,6 @@ begin
fProcess.Parameters.Text := arg;
end;
end;
ensureNoPipeIfWait(fProcess);
if fProcess.Executable.fileExists then
begin