IDE Scout: Fix a memory leak. RemoveHandler...() threw an AV because this plugin form is destroyed too late when Lazarus closes. FSearchItems was not freed.

This commit is contained in:
Juha 2024-08-03 19:30:32 +03:00
parent d51777fee4
commit 184e26164e

View File

@ -544,14 +544,7 @@ end;
procedure TIDEScoutForm.FormDestroy(Sender: TObject);
begin
With IDEEnvironmentOptions do
begin
RemoveHandlerAddToRecentOpenFiles(@PackageOpened);
RemoveHandlerAddToRecentProjectFiles(@FileOpened);
RemoveHandlerAddToRecentPackageFiles(@ProjectOpened);
end;
FreeAndNil(FSearchItems);
ScoutForm:=Nil;
end;
procedure TIDEScoutForm.FormShow(Sender: TObject);