linscomt / dspack

Automatically exported from code.google.com/p/dspack
0 stars 0 forks source link

Memory leak in TBCAMSchedule #3

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?

destructor TBCAMSchedule.Destroy;
  [...]
  FreeAndNil(FSerialize);
  FreeAndNil(FHead);    //<-- add this
  FreeAndNil(FZ);       //<-- add this
  inherited Destroy;
end;

What is the expected output? What do you see instead?
FastMM4 reports a memory leak when closing the application.

What version of the product are you using? On what operating system?
r3  Jan 25, 2010

Original issue reported on code.google.com by Lassiv...@gmail.com on 7 Sep 2010 at 5:57