After installing Zeos 6.6.3 and using it's TZIBEventAlerter I've noticed some memory leaking on my application.
This component instantiates a TStringList (FEvents) on it's constructor but never frees it.
I've added a call to FEvents.Free on TZIBEventAlerter destructor. Further, I've removed the following lines:
if Assigned(FEvents) then
TStringList(FEvents).OnChange := nil;
Because if FEvents is gonna be freed, there's no point on setting nil to OnChange.
[patch_done] Memory leak on TZIBEventAlerter
Moderators: gto, cipto_kh, EgonHugeist, mdaems