Atozed Forums

Full Version: Memory Leak on v15.2.13
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Code:
unit Unit1;

interface

uses
  Classes, SysUtils, IWAppForm, IWApplication, IWColor, IWTypes, Vcl.Controls,
  IWVCLBaseControl, IWBaseControl, IWBaseHTMLControl, IWControl, IWCompButton;

type
  TIWForm1 = class(TIWAppForm)
    IWButton1: TIWButton;
    procedure IWButton1AsyncClick(Sender: TObject; EventParams: TStringList);
  public
  end;

implementation

{$R *.dfm}


procedure TIWForm1.IWButton1AsyncClick(Sender: TObject; EventParams: TStringList);
begin
  //
end;

initialization
  TIWForm1.SetAsMainForm;

end.
Attachment: 1.gif
I can't recreate this using the full version of FastMM 4.992 + FullDebugMode.dll.

Can you please zip the source code of your project and attach it to your post?
No need to attach a project.... I think I know what is happening... I'll get back to you ASAP
I can confirm that this leak exists in 15.2.13. I removed this version from our FTP server and replaced with new fixed build 15.2.14. Please update:

https://www.atozed.com/2020/08/intraweb-15-2-14/
(08-24-2020, 01:27 PM)Alexandre Machado Wrote: [ -> ]I can confirm that this leak exists in 15.2.13. I removed this version from our FTP server and replaced with new fixed build 15.2.14. Please update:

https://www.atozed.com/2020/08/intraweb-15-2-14/
thanks