mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-11-02 06:10:30 +01:00
* GenericAnsiStrComp fix from Vincent Snijders
git-svn-id: trunk@1172 -
This commit is contained in:
parent
5a2b5a50a4
commit
e0d2eee158
@ -300,15 +300,15 @@ begin
|
||||
exit;
|
||||
end;
|
||||
Repeat
|
||||
Result:=Ord(S1[0])-Ord(S2[0]); //!! Must be replaced by ansi characters !!
|
||||
Result:=Ord(S1^)-Ord(S2^); //!! Must be replaced by ansi characters !!
|
||||
Inc(S1);
|
||||
Inc(S2);
|
||||
Until (Result<>0) or (S1^=#0) or (S2^=#0);
|
||||
if Result=0 then
|
||||
if s1=#0 then
|
||||
result:=1
|
||||
if (Result=0) and (S1^<>S2^) then // loop ended because exactly one has #0
|
||||
if S1^=#0 then // shorter string is smaller
|
||||
result:=-1
|
||||
else
|
||||
result:=-1;
|
||||
result:=1;
|
||||
end;
|
||||
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user