@@ -490,13 +490,13 @@ function RunAndGetOutput(const Cmd, WorkDir: String;
490
490
si: TStartupInfo;
491
491
pi: TProcessInformation;
492
492
nRead: DWORD;
493
- // TODO:: LIFT. Change this to TBytes for example
494
- aBuf: array [ 0 .. 8192 ] of AnsiChar ;
493
+ // aBuf: array[0..8192] of Byte;
494
+ aBuf: TBytes ;
495
495
sa: TSecurityAttributes;
496
496
hOutputReadTmp, hOutputRead, hOutputWrite, hInputWriteTmp, hInputRead,
497
497
hInputWrite, hErrorWrite: THandle;
498
- FOutput: AnsiString ;
499
- CurrentLine: AnsiString ;
498
+ FOutput: String ;
499
+ CurrentLine: String ;
500
500
bAbort: boolean;
501
501
begin
502
502
FOutput := ' ' ;
@@ -596,6 +596,8 @@ function RunAndGetOutput(const Cmd, WorkDir: String;
596
596
end ;
597
597
598
598
bAbort := False;
599
+ SetLength(aBuf, 8192 );
600
+ var BufStr: string := ' ' ;
599
601
repeat
600
602
// Ask our caller if he wants us to quit
601
603
if Assigned(CheckAbortFunc) then
@@ -604,15 +606,16 @@ function RunAndGetOutput(const Cmd, WorkDir: String;
604
606
TerminateProcess(pi.hProcess, 1 );
605
607
Break;
606
608
end ;
607
- if (not ReadFile(hOutputRead, aBuf, SizeOf(aBuf) - 1 , nRead, nil )) or (nRead = 0 ) then begin
609
+ if (not ReadFile(hOutputRead, (@ aBuf[ 0 ])^ , SizeOf(aBuf) - 1 , nRead, nil )) or (nRead = 0 ) then begin
608
610
if GetLastError = ERROR_BROKEN_PIPE then
609
611
Break; // pipe done - normal exit path
610
612
end ;
611
- aBuf[nRead] := #0 ;
612
- FOutput := FOutput + PAnsiChar(@aBuf[0 ]);
613
+ // aBuf[nRead] := 0;
614
+ BufStr := TEncoding.Default.GetString(aBuf, Low(aBuf), nRead);
615
+ FOutput := FOutput + BufStr;
613
616
614
617
if Assigned(LineOutputFunc) then begin
615
- CurrentLine := CurrentLine + PAnsiChar(@aBuf[ 0 ]) ;
618
+ CurrentLine := CurrentLine + BufStr ;
616
619
if CurrentLine[Length(CurrentLine)] = #10 then begin
617
620
Delete(CurrentLine, Length(CurrentLine), 1 );
618
621
LineOutputFunc(CurrentLine);
0 commit comments