mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-16 19:09:19 +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;
|
destructor TPropInfoList.Destroy;
|
||||||
begin
|
begin
|
||||||
if FList<>nil then FreeMem(FList);
|
if FList<>nil then FreeMem(FList);
|
||||||
|
{$IFDEF HasExtRtti}
|
||||||
|
if FListExt<>nil then FreeMem(FListExt);
|
||||||
|
{$ENDIF HasExtRtti}
|
||||||
end;
|
end;
|
||||||
|
|
||||||
function TPropInfoList.Contains(P:PPropInfo):Boolean;
|
function TPropInfoList.Contains(P:PPropInfo):Boolean;
|
||||||
|
Loading…
Reference in New Issue
Block a user