LeakView: fix double free crash. Introduced in r61711 #01fb06cf22 by using TFPGObjectList which does auto free objects

git-svn-id: trunk@61808 -
This commit is contained in:
martin 2019-09-02 13:01:37 +00:00
parent 4e7c7e1842
commit e948c7b47a

View File

@ -304,8 +304,6 @@ procedure THeapTrcViewForm.ClearItems;
var
i : integer;
begin
for i := 0 to fItems.Count - 1 do
TObject(fItems[i]).Free;
fItems.Clear;
end;