From 9f719346635d9fa63ce26b089f02e019a733a3da Mon Sep 17 00:00:00 2001 From: Basile Burg Date: Mon, 6 May 2019 06:21:35 +0200 Subject: [PATCH] runnable exec blocked in some case at some point a new TProcess started from scratch will be required... --- src/u_main.pas | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/u_main.pas b/src/u_main.pas index 2c557891..db052e88 100644 --- a/src/u_main.pas +++ b/src/u_main.pas @@ -3171,7 +3171,7 @@ begin fRunProc := TDexedProcess.Create(nil); if redirect then begin - fRunProc.Options := [poStderrToOutPut, poUsePipes, poWaitOnExit]; + fRunProc.Options := [poStderrToOutPut, poUsePipes]; fRunProc.ShowWindow := swoHIDE; fRunProc.OnReadData := @asyncprocOutput; fRunProc.OnTerminate:= @asyncprocTerminate;