Einzelnen Beitrag anzeigen

RaSoWa1

Registriert seit: 1. Jun 2006
Ort: Halle/Saale
140 Beiträge
 
Delphi 2010 Professional
 
#1

Speicherlecks Bug in D6 oder FastMM4?

  Alt 1. Sep 2009, 17:45
Hallo,

wegen eines Speicherproblems in einem Programm habe ich, das hier im Forum oft empfohlene FastMM4, installiert.

Ich bin dabei auf folgendes gestoßen:
FastMM4 meldet Speicherlecks (Meldung im Anhang) bei einem Prog (Code siehe unten), das nur aus einem Formular besteht!

Ist das ein Bug von D6 oder FastMM4?
Oder mache ich was falsch?

Gruß
Klaus

Projekt1:
Delphi-Quellcode:
unit Unit1;

interface

uses
  Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
  Dialogs;

type
  TForm1 = class(TForm)
  private
    { Private declarations }
  public
    { Public declarations }
  end;

var
  Form1: TForm1;

implementation

{$R *.dfm}

end.


program Project1;

uses
  FastMM4 in '..\Lib\FastMM\FastMM4.pas',
  Forms,
  Unit1 in 'Unit1.pas{Form1};

{$R *.res}

begin
  Application.Initialize;
  Application.CreateForm(TForm1, Form1);
  Application.Run;
end.
Miniaturansicht angehängter Grafiken
speicherleck_204.jpg  
Klaus
  Mit Zitat antworten Zitat