Fixed crash in SocketSelector::add when passing an invalid socket
This commit is contained in:
parent
5706111088
commit
aa534a0936
@ -70,6 +70,7 @@ public :
|
|||||||
/// This function keeps a weak reference to the socket,
|
/// This function keeps a weak reference to the socket,
|
||||||
/// so you have to make sure that the socket is not destroyed
|
/// so you have to make sure that the socket is not destroyed
|
||||||
/// while it is stored in the selector.
|
/// while it is stored in the selector.
|
||||||
|
/// This function does nothing if the socket is not valid.
|
||||||
///
|
///
|
||||||
/// \param socket Reference to the socket to add
|
/// \param socket Reference to the socket to add
|
||||||
///
|
///
|
||||||
@ -186,7 +187,7 @@ private :
|
|||||||
/// A selector doesn't store its own copies of the sockets
|
/// A selector doesn't store its own copies of the sockets
|
||||||
/// (socket classes are not copyable anyway), it simply keeps
|
/// (socket classes are not copyable anyway), it simply keeps
|
||||||
/// a reference to the original sockets that you pass to the
|
/// a reference to the original sockets that you pass to the
|
||||||
/// Add function. Therefore, you can't use the selector as a
|
/// "add" function. Therefore, you can't use the selector as a
|
||||||
/// socket container, you must store them oustide and make sure
|
/// socket container, you must store them oustide and make sure
|
||||||
/// that they are alive as long as they are used in the selector.
|
/// that they are alive as long as they are used in the selector.
|
||||||
///
|
///
|
||||||
|
@ -73,11 +73,15 @@ SocketSelector::~SocketSelector()
|
|||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
void SocketSelector::add(Socket& socket)
|
void SocketSelector::add(Socket& socket)
|
||||||
{
|
{
|
||||||
FD_SET(socket.getHandle(), &m_impl->AllSockets);
|
SocketHandle handle = socket.getHandle();
|
||||||
|
if (handle != SocketImpl::invalidSocket())
|
||||||
|
{
|
||||||
|
FD_SET(handle, &m_impl->AllSockets);
|
||||||
|
|
||||||
int size = static_cast<int>(socket.getHandle());
|
int size = static_cast<int>(handle);
|
||||||
if (size > m_impl->MaxSocket)
|
if (size > m_impl->MaxSocket)
|
||||||
m_impl->MaxSocket = size;
|
m_impl->MaxSocket = size;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user