* patch from Mantis #23647 Calls inherited destroy in destructor, resolves memory leak.

git-svn-id: trunk@23480 -
This commit is contained in:
marco 2013-01-21 12:53:50 +00:00
parent a7a6301672
commit 0560af663c

View File

@ -929,6 +929,7 @@ destructor TCustomDaemonApplication.Destroy;
begin
if assigned(FEventLog) then
FEventLog.Free;
inherited Destroy;
end;
procedure TCustomDaemonApplication.DoRun;