home *** CD-ROM | disk | FTP | other *** search
- unit TestMain;
-
- interface
-
- uses
- Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
- StdCtrls;
-
- type
- TForm1 = class(TForm)
- Button1: TButton;
- Button2: TButton;
- procedure Button1Click(Sender: TObject);
- procedure Button2Click(Sender: TObject);
- private
- { Private declarations }
- public
- { Public declarations }
- end;
-
- var
- Form1: TForm1;
-
- implementation
-
- {$R *.DFM}
-
- procedure DLLLeaker; external 'leakydll.dll' name 'LeakyProc';
-
- procedure LocalLeaker;
- var
- p, q: pointer;
- begin
- GetMem(q,333);
- GetMem(p,200);
- FreeMem(q);
- end;
-
- procedure TForm1.Button1Click(Sender: TObject);
- begin
- LocalLeaker;
- end;
-
- procedure TForm1.Button2Click(Sender: TObject);
- begin
- DLLLeaker;
- end;
-
- end.
-