mirror of
https://github.com/zeromq/libzmq.git
synced 2024-12-12 18:40:27 +01:00
{tcp|ipc}_connecter: check whether socket is valid before closing it
Calling close () when the underlying socket is invalid triggers an assertion failure.
This commit is contained in:
parent
ec9f8994a7
commit
919bd9628d
@ -154,7 +154,8 @@ void zmq::ipc_connecter_t::start_connecting ()
|
||||
|
||||
// Handle any other error condition by eventual reconnect.
|
||||
else {
|
||||
close ();
|
||||
if (s != retired_fd)
|
||||
close ();
|
||||
add_reconnect_timer ();
|
||||
}
|
||||
}
|
||||
|
@ -167,7 +167,8 @@ void zmq::tcp_connecter_t::start_connecting ()
|
||||
|
||||
// Handle any other error condition by eventual reconnect.
|
||||
else {
|
||||
close ();
|
||||
if (s != retired_fd)
|
||||
close ();
|
||||
add_reconnect_timer ();
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user