Dear all
Instead of
TcpConnection::~TcpConnection()
{
…
if (socket) {
socket->disconnect (this);
delete socket;
}
if (timer) {
delete timer;
}
have
if (socket)
socket->disconnect (this);
delete socket;
delete timer;
– cheerio atul
Dear all
Instead of
TcpConnection::~TcpConnection()
{
…
if (socket) {
socket->disconnect (this);
delete socket;
}
if (timer) {
delete timer;
}
have
if (socket)
socket->disconnect (this);
delete socket;
delete timer;
– cheerio atul
Would you like to post a relpy?