git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@28682
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
/* Wait for a connection (with timeout) */
if (Input_Timeout() == GSOCK_TIMEDOUT)
{
- GSocket_destroy(connection);
+ delete connection;
/* m_error set by _GSocket_Input_Timeout */
return NULL;
}
else
m_error = GSOCK_IOERR;
- GSocket_destroy(connection);
+ delete connection;
return NULL;
}
connection->m_peer = GAddress_new();
if (!connection->m_peer)
{
- GSocket_destroy(connection);
+ delete connection;
m_error = GSOCK_MEMERR;
return NULL;
}
if (err != GSOCK_NOERROR)
{
GAddress_destroy(connection->m_peer);
- GSocket_destroy(connection);
+ delete connection;
m_error = err;
return NULL;
}
/* Wait for a connection (with timeout) */
if (Input_Timeout() == GSOCK_TIMEDOUT)
{
- GSocket_destroy(connection);
+ delete connection;
/* m_error set by _GSocket_Input_Timeout */
return NULL;
}
else
m_error = GSOCK_IOERR;
- GSocket_destroy(connection);
+ delete connection;
return NULL;
}
connection->m_peer = GAddress_new();
if (!connection->m_peer)
{
- GSocket_destroy(connection);
+ delete connection;
m_error = GSOCK_MEMERR;
return NULL;
}
if (err != GSOCK_NOERROR)
{
GAddress_destroy(connection->m_peer);
- GSocket_destroy(connection);
+ delete connection;
m_error = err;
return NULL;
}