mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-19 13:09:36 +02:00
Merge branch 'local_changes' into 'main'
IDEIntf: properly free FListExt See merge request freepascal.org/lazarus/lazarus!337
This commit is contained in:
commit
2f2884244b
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user