mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-09-03 00:10:51 +02:00
* Fixes range check errors, by Anton (bug id 19038)
git-svn-id: trunk@17226 -
This commit is contained in:
parent
f235e4c116
commit
b78f9f7706
@ -2609,7 +2609,7 @@ Var
|
||||
I : Integer;
|
||||
|
||||
begin
|
||||
For I:=0 to Length(Params) do
|
||||
For I:=0 to High(Params) do
|
||||
begin
|
||||
If (Result<>'') then
|
||||
Result:=Result+', ';
|
||||
@ -2647,7 +2647,7 @@ Function TRecordValues.GetDeclaration(Full : Boolean):AnsiString;
|
||||
Var
|
||||
I : Integer;
|
||||
begin
|
||||
For I:=0 to Length(Fields) do
|
||||
For I:=0 to High(Fields) do
|
||||
begin
|
||||
If Result='' then
|
||||
Result:=Result+'; ';
|
||||
@ -2708,7 +2708,7 @@ Var
|
||||
I : Integer;
|
||||
|
||||
begin
|
||||
For I:=0 to Length(Values) do
|
||||
For I:=0 to High(Values) do
|
||||
begin
|
||||
If Result='' then
|
||||
Result:=Result+', ';
|
||||
|
Loading…
Reference in New Issue
Block a user