Hi DelTurbo,
ich hab das jetzt bestimmt 50x geprüft und bekomme keine
AV.
Indy ist bei Dir ja die letzte aus dem
SVN, ansonsten bitte dazuschreiben.
Edit: Das Close ist natürlich drin: Destruktorreihenfolge IdIRC.Destroy > IdCmdTCPClient.Destroy > IdTCPConnection.Destroy:
Delphi-Quellcode:
destructor TIdTCPConnection.Destroy;
begin
// Just close IOHandler directly. Dont call Disconnect - Disconnect may be override and
// try to read/write to the socket.
if Assigned(IOHandler) then begin
IOHandler.Close;
// This will free any managed IOHandlers
IOHandler := nil;
end;
...
end;
Welche Delphi Version setzt Du ein?
Gruß Assertor