Browse Source

* fix for wrong pointer increment (causing crash/heap corruptions)

git-svn-id: trunk@2337 -
Tomas Hajny 19 years ago
parent
commit
bbd4886809
1 changed files with 1 additions and 1 deletions
  1. 1 1
      rtl/os2/dos.pas

+ 1 - 1
rtl/os2/dos.pas

@@ -173,7 +173,7 @@ begin
 (* Work around a bug in OS/2 - argument to DosExecPgm *)
 (* should not cross 64K boundary. *)
     if ((PtrUInt (Args) + 1024) and $FFFF) < 1024 then
-     Inc (Args, 1024);
+     Inc (pointer (Args), 1024);
     ArgSize := 0;
     Move (QName [1], Args^ [ArgSize], Length (QName));
     Inc (ArgSize, Length (QName));