mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-06 05:38:25 +02:00
IDEIntf: properly free FListExt
This commit is contained in:
parent
99058f8954
commit
46eeba9b15
@ -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