Memory leak? or am I doing something wrong?
Moderators: gto, cipto_kh, EgonHugeist
Hi i think most of all those memory leack are fixed in 6.5.1. Plz give try to this latest version. It works more stable than 6.1.5. Version 6.1.5 have been abandoned so 6.5.1 i now the production version. even if it is named 'alpha' is quite to become 'beta'. all the bugs in 6.1.5 were fixed in 6.5.1.
Guys,
Maybe it helps.
in "ZDbcCache.pas" on:
procedure TZRowAccessor.DisposeBuffer(Buffer: PZRowBuffer);
try to change:
to:
It worked for me, I'm using Delphi 2006.
Maybe it helps.
in "ZDbcCache.pas" on:
procedure TZRowAccessor.DisposeBuffer(Buffer: PZRowBuffer);
try to change:
Code: Select all
FreeMem(Buffer, FRowSize);
Code: Select all
FreeMem(Buffer);