mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-06 15:47:52 +02:00
* fix for random memory corruption introduced in r28975
git-svn-id: trunk@29017 -
This commit is contained in:
parent
398fa3dd8d
commit
f330d2e981
@ -202,7 +202,7 @@ var
|
||||
RC, RC2: cardinal;
|
||||
ExecAppType: cardinal;
|
||||
HQ: THandle;
|
||||
SPID, STID, SCtr, QName: string;
|
||||
SPID, STID, QName: string;
|
||||
SID, PID: cardinal;
|
||||
SD: TStartData;
|
||||
RD: TRequestData;
|
||||
@ -211,7 +211,8 @@ var
|
||||
Prio: byte;
|
||||
DSS: boolean;
|
||||
SR: SearchRec;
|
||||
MaxArgsSize: word; (* Amount of memory reserved for arguments in bytes. *)
|
||||
MaxArgsSize: PtrUInt; (* Amount of memory reserved for arguments in bytes. *)
|
||||
MaxArgsSizeInc: word;
|
||||
|
||||
begin
|
||||
{ LastDosExitCode := Exec (Path, ExecRunFlags (ExecFlags), efDefault, ComLine);}
|
||||
@ -225,6 +226,11 @@ begin
|
||||
QName := Path;
|
||||
FindClose (SR);
|
||||
MaxArgsSize := Length (ComLine) + Length (QName) + 256; (* More than enough *)
|
||||
if MaxArgsSize > high (word) then
|
||||
begin
|
||||
DosError := 8; (* Not quite, but "not enough memory" is close enough *)
|
||||
Exit;
|
||||
end;
|
||||
if ComLine = '' then
|
||||
begin
|
||||
Args0 := nil;
|
||||
@ -236,8 +242,19 @@ begin
|
||||
Args := Args0;
|
||||
(* Work around a bug in OS/2 - argument to DosExecPgm *)
|
||||
(* should not cross a 64K boundary. *)
|
||||
if ((PtrUInt (Args) + 1024) and $FFFF) < 1024 then
|
||||
Inc (pointer (Args), 1024);
|
||||
while ((PtrUInt (Args) + MaxArgsSize) and $FFFF) < MaxArgsSize do
|
||||
begin
|
||||
MaxArgsSizeInc := MaxArgsSize -
|
||||
((PtrUInt (Args) + MaxArgsSize) and $FFFF);
|
||||
Inc (MaxArgsSize, MaxArgsSizeInc);
|
||||
if MaxArgsSize > high (word) then
|
||||
begin
|
||||
DosError := 8; (* Not quite, but "not enough memory" is close enough *)
|
||||
Exit;
|
||||
end;
|
||||
ReallocMem (Args0, MaxArgsSize);
|
||||
Inc (pointer (Args), MaxArgsSizeInc);
|
||||
end;
|
||||
ArgSize := 0;
|
||||
Move (QName [1], Args^ [ArgSize], Length (QName));
|
||||
Inc (ArgSize, Length (QName));
|
||||
|
@ -753,7 +753,8 @@ var
|
||||
ObjName: shortstring;
|
||||
RC: cardinal;
|
||||
ExecAppType: cardinal;
|
||||
MaxArgsSize: word; (* Amount of memory reserved for arguments in bytes. *)
|
||||
MaxArgsSize: PtrUInt; (* Amount of memory reserved for arguments in bytes. *)
|
||||
MaxArgsSizeInc: word;
|
||||
|
||||
const
|
||||
ObjBufSize = 512;
|
||||
@ -849,6 +850,8 @@ begin
|
||||
(* DosExecPgm should work... *)
|
||||
begin
|
||||
MaxArgsSize := Length (ComLine) + Length (Path) + 256; (* More than enough *)
|
||||
if MaxArgsSize > high (word) then
|
||||
Exit;
|
||||
if ComLine = '' then
|
||||
begin
|
||||
Args0 := nil;
|
||||
@ -860,8 +863,16 @@ begin
|
||||
Args := Args0;
|
||||
(* Work around a bug in OS/2 - argument to DosExecPgm *)
|
||||
(* should not cross 64K boundary. *)
|
||||
if ((PtrUInt (Args) + 1024) and $FFFF) < 1024 then
|
||||
Inc (pointer (Args), 1024);
|
||||
while ((PtrUInt (Args) + MaxArgsSize) and $FFFF) < MaxArgsSize do
|
||||
begin
|
||||
MaxArgsSizeInc := MaxArgsSize -
|
||||
((PtrUInt (Args) + MaxArgsSize) and $FFFF);
|
||||
Inc (MaxArgsSize, MaxArgsSizeInc);
|
||||
if MaxArgsSize > high (word) then
|
||||
Exit;
|
||||
ReallocMem (Args0, MaxArgsSize);
|
||||
Inc (pointer (Args), MaxArgsSizeInc);
|
||||
end;
|
||||
ArgSize := 0;
|
||||
Move (Path [1], Args^ [ArgSize], Length (Path));
|
||||
Inc (ArgSize, Length (Path));
|
||||
|
Loading…
Reference in New Issue
Block a user