ne0bot/dspack

Memory leak in TBCAMSchedule

Opened this issue · 0 comments

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