mirror of
https://github.com/zeromq/libzmq.git
synced 2025-03-16 16:13:58 +00: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.
|
// Handle any other error condition by eventual reconnect.
|
||||||
else {
|
else {
|
||||||
close ();
|
if (s != retired_fd)
|
||||||
|
close ();
|
||||||
add_reconnect_timer ();
|
add_reconnect_timer ();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -167,7 +167,8 @@ void zmq::tcp_connecter_t::start_connecting ()
|
|||||||
|
|
||||||
// Handle any other error condition by eventual reconnect.
|
// Handle any other error condition by eventual reconnect.
|
||||||
else {
|
else {
|
||||||
close ();
|
if (s != retired_fd)
|
||||||
|
close ();
|
||||||
add_reconnect_timer ();
|
add_reconnect_timer ();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user