* Merging revisions r45264 from trunk:

------------------------------------------------------------------------
    r45264 | michael | 2020-05-05 11:52:02 +0200 (Tue, 05 May 2020) | 1 line
    
    * CeateArray uses 0-based loop
    ------------------------------------------------------------------------

git-svn-id: branches/fixes_3_2@46628 -
This commit is contained in:
michael 2020-08-23 09:49:00 +00:00
parent 57313b637a
commit ed3f8f66f1

View File

@ -743,7 +743,7 @@ begin
AddLn('');
AddLn('begin');
Indent;
AddLn('For I:=0 to Length(anArray) do');
AddLn('For I:=0 to Length(anArray)-1 do');
Indent;
if IM.JSONType=jtObject then
AddLn('FreeAndNil(anArray[I]);')