[delphizip] TZipMaster memory leak

  • From: "R. Peters" <russellpeters@xxxxxxxxxxx>
  • To: <delphizip@xxxxxxxxxxxxx>
  • Date: Mon, 10 Jan 2005 10:33:07 +1100

I have just been alerted to the fact that ZipMaster creates 2 stringLists
but fails to destroy them.

To correct the problem
In VCL\ZipMstr.pas (about line 931)

destructor TCustomZipMaster.Destroy;
begin
  FreeAndNil(FZip);
  FreeAndNil(FFSpecArgs);
  FreeAndNil(FFSpecArgsExcl);
  inherited;
end;

- Russell Peters

-----------
To unsubscribe from this list, send an empty e-mail 
message to:
  delphizip-request@xxxxxxxxxxxxx 
and put the word unsubscribe in the subject.

Other related posts:

  • » [delphizip] TZipMaster memory leak