mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-20 16:09:31 +02:00
* Fixed 23805
git-svn-id: trunk@23899 -
This commit is contained in:
parent
d4613fe961
commit
37ba6f9b27
@ -781,7 +781,7 @@ begin
|
||||
begin
|
||||
S:=Strings[Result];
|
||||
len:=pos(FNameValueSeparator,S)-1;
|
||||
if (len>0) and (DoCompareText(Name,Copy(S,1,Len))=0) then
|
||||
if (len>=0) and (DoCompareText(Name,Copy(S,1,Len))=0) then
|
||||
exit;
|
||||
inc(result);
|
||||
end;
|
||||
|
Loading…
Reference in New Issue
Block a user