* manually added the fix done in main in f35a565f4e

This commit is contained in:
florian 2024-07-30 19:16:31 +02:00
parent ae0f84fdd5
commit a740983769

View File

@ -40,7 +40,7 @@ Function TProcessnamemacro.PeekExitStatus : Boolean;
begin
Result:=GetExitCodeProcess(ProcessHandle,FExitCode) and (FExitCode<>Still_Active);
// wait up to 10ms extra till process really done to get rest of input bug #39821
if not Result Then
if Result Then
WaitForSingleObject(FProcessHandle,10);
end;