IDEIntf: properly free FListExt

This commit is contained in:
alligator 2024-09-15 20:35:57 +00:00 committed by Maxim Ganetsky
parent 99058f8954
commit 46eeba9b15

View File

@ -2615,6 +2615,9 @@ end;
destructor TPropInfoList.Destroy;
begin
if FList<>nil then FreeMem(FList);
{$IFDEF HasExtRtti}
if FListExt<>nil then FreeMem(FListExt);
{$ENDIF HasExtRtti}
end;
function TPropInfoList.Contains(P:PPropInfo):Boolean;