mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-10 21:06:11 +02:00
parent
0801c64813
commit
c64ab62bdf
@ -643,13 +643,12 @@ begin
|
||||
while psrc<pend do
|
||||
begin
|
||||
b:=(ptrint(psrc^)-ptrint(pdest^));
|
||||
if (b<>0) or (psrc^=0) or (pdest^=0) then
|
||||
begin
|
||||
if b<0 then
|
||||
exit(-1)
|
||||
else
|
||||
else if b>0 then
|
||||
exit(1);
|
||||
end;
|
||||
if (psrc^=0) or (pdest^=0) then
|
||||
exit(0);
|
||||
inc(pdest);
|
||||
inc(psrc);
|
||||
end;
|
||||
|
Loading…
Reference in New Issue
Block a user