Atozed Forums
Memory Leak on v15.2.13 - Printable Version

+- Atozed Forums (https://www.atozed.com/forums)
+-- Forum: Atozed Software (https://www.atozed.com/forums/forum-1.html)
+--- Forum: IntraWeb (https://www.atozed.com/forums/forum-3.html)
+---- Forum: English (https://www.atozed.com/forums/forum-16.html)
+----- Forum: IntraWeb General Discussion (https://www.atozed.com/forums/forum-4.html)
+----- Thread: Memory Leak on v15.2.13 (/thread-1902.html)



Memory Leak on v15.2.13 - Encina - 08-24-2020

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 - Encina - 08-24-2020

Attachment: 1.gif


RE: Memory Leak on v15.2.13 - Alexandre Machado - 08-24-2020

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?


RE: Memory Leak on v15.2.13 - Alexandre Machado - 08-24-2020

No need to attach a project.... I think I know what is happening... I'll get back to you ASAP


RE: Memory Leak on v15.2.13 - Alexandre Machado - 08-24-2020

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/


RE: Memory Leak on v15.2.13 - Encina - 08-25-2020

(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