Merge branch 'local_changes' into 'main'

IDEIntf: properly free FListExt

See merge request freepascal.org/lazarus/lazarus!337
This commit is contained in:
Maxim Ganetsky 2024-09-15 20:35:57 +00:00
commit 2f2884244b

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;