home *** CD-ROM | disk | FTP | other *** search
/ Chip 1999 January / Chip_1999-01_cd.bin / zkuste / delphi / D / SNPTST20.ZIP / TestApp / LeakAppU.pas < prev    next >
Pascal/Delphi Source File  |  1998-07-25  |  519b  |  36 lines

  1. unit LeakAppU;
  2.  
  3. interface
  4.  
  5. uses
  6.   Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
  7.   StdCtrls;
  8.  
  9. type
  10.   TForm1 = class(TForm)
  11.     Button1: TButton;
  12.     procedure Button1Click(Sender: TObject);
  13.   private
  14.     { Private declarations }
  15.   public
  16.     { Public declarations }
  17.   end;
  18.  
  19. var
  20.   Form1: TForm1;
  21.  
  22. implementation
  23.  
  24. {$R *.DFM}
  25.  
  26. procedure TForm1.Button1Click(Sender: TObject);
  27. var
  28.   p, q: pointer;
  29. begin
  30.   GetMem(p,100);
  31.   GetMem(q,20);
  32.   FreeMem(p);
  33. end;
  34.  
  35. end.
  36.