* fixed missing pointer dereference of parameter passed to move()

(patch by ocean, mantis #22670)

git-svn-id: trunk@22122 -
This commit is contained in:
Jonas Maebe 2012-08-19 09:44:56 +00:00
parent c29e6bbcb8
commit 1c80388e00

View File

@ -2040,7 +2040,7 @@ begin
i:=n+1;
inc(NewCount,i);
inc(p);
System.Move(p,d^,i);
System.Move(p^,d^,i);
inc(p,i);
inc(d,i);
end;