Clean up at procedure TCustomDaemonApplication.RemoveController

by 'lagprogramming'.

packages/fcl-extra/src/unix/daemonapp.inc has the following procedure:

procedure TCustomDaemonApplication.RemoveController(
  AController: TDaemonController);
 
Var
  I : Integer;
  HC : Boolean;
 
begin
  FreeAndNil(AController.FDaemon);
  AController.Free;
end;

Variables I and HC are declared but never used.