mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 13:18:25 +02:00
Merge branch 'fixes_3_2' into release_3_2_4-branch
This commit is contained in:
commit
ba34a5fe2c
@ -40,7 +40,7 @@ Function TProcessnamemacro.PeekExitStatus : Boolean;
|
|||||||
begin
|
begin
|
||||||
Result:=GetExitCodeProcess(ProcessHandle,FExitCode) and (FExitCode<>Still_Active);
|
Result:=GetExitCodeProcess(ProcessHandle,FExitCode) and (FExitCode<>Still_Active);
|
||||||
// wait up to 10ms extra till process really done to get rest of input bug #39821
|
// 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);
|
WaitForSingleObject(FProcessHandle,10);
|
||||||
end;
|
end;
|
||||||
|
|
||||||
|
@ -266,7 +266,7 @@ begin
|
|||||||
aType:= Reg.ReadString('Content Type');
|
aType:= Reg.ReadString('Content Type');
|
||||||
Reg.CloseKey;
|
Reg.CloseKey;
|
||||||
if aType<>'' then
|
if aType<>'' then
|
||||||
AddType(aType,Ext);
|
AddType(aType,Copy(Ext,2,Length(Ext)-1));
|
||||||
end;
|
end;
|
||||||
end;
|
end;
|
||||||
Reg.CloseKey;
|
Reg.CloseKey;
|
||||||
|
Loading…
Reference in New Issue
Block a user