LazUtils: TXMLConfig fixed crash with uninitialized result value. (If "CreateNodes" is false, and [] value is not cached)

This commit is contained in:
Martin 2022-06-15 01:35:14 +02:00
parent 7771de23e5
commit 4e97ffa45f

View File

@ -990,6 +990,7 @@ var
cmp, BrPos: Integer;
NodeName: string;
begin
Result := nil;
BrPos := Pos('[', aName);
if (Length(aName)>=BrPos+2) and (aName[Length(aName)]=']')
and TryStrToInt(Trim(Copy(aName, BrPos+1, Length(aName)-BrPos-1)), m) then