WladiD/AnyiQuack

Unexpected Memory Leak

Closed this issue · 2 comments

Hello there!

Delphi 10.2.1 (25.0.27659.1188) + today's AnyiQuack:

  1. Open project from \Examples\SlidingForm\
  2. Add ReportMemoryLeaksOnShutdown := True; to SlidingForm.dpr:

program SlidingForm;

uses
Forms,
Main in 'Main.pas' {Form1},
AQPControlAnimations in '....\AQPControlAnimations.pas',
AnyiQuack in '....\AnyiQuack.pas',
Vcl.Themes,
Vcl.Styles;

{$R *.res}

begin
ReportMemoryLeaksOnShutdown := True;
Application.Initialize;
Application.MainFormOnTaskbar := True;
Application.CreateForm(TForm1, Form1);
Application.Run;
end.

  1. Press F9
  2. Click on the form...
  3. Close application
  4. Now check out the file in attach:
    uml

Could you fix it please?

Check out my last commit and let me know whether the leak is fixed...

Yep, the problem has been solved, thank you!