cwSocket.cpp : Log a warning if the socket to destroy() is not found.
This commit is contained in:
parent
d143546748
commit
16fb46f5f9
@ -782,8 +782,11 @@ cw::rc_t cw::sock::destroy( handle_t h, unsigned userId )
|
|||||||
sock_t* s;
|
sock_t* s;
|
||||||
|
|
||||||
if((rc = _getMgrAndSocket(h, userId, p, s )) != kOkRC )
|
if((rc = _getMgrAndSocket(h, userId, p, s )) != kOkRC )
|
||||||
|
{
|
||||||
|
cwLogWarning("Socket destroy failed. The socket %i could not be found.",userId);
|
||||||
return rc;
|
return rc;
|
||||||
|
}
|
||||||
|
|
||||||
if((rc = _closeSock(p,s)) != kOkRC )
|
if((rc = _closeSock(p,s)) != kOkRC )
|
||||||
return rc;
|
return rc;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user