summaryrefslogtreecommitdiff
path: root/src/zmq_connecter.cpp
diff options
context:
space:
mode:
authorPaul Colomiets <pc@gafol.net>2011-05-17 10:12:27 +0200
committerMartin Sustrik <sustrik@250bpm.com>2011-05-17 10:12:27 +0200
commit38e5f8699ccff09a91e37e139c4a86a259ac597b (patch)
treea014574dce93f65a0c4781bdf2798f7caf22d6f9 /src/zmq_connecter.cpp
parent864c18f797203c06e66e739166b246cfb3d47ce9 (diff)
Better handling of memory error in resolve_ip_hostname
Signed-off-by: Paul Colomiets <pc@gafol.net>
Diffstat (limited to 'src/zmq_connecter.cpp')
-rw-r--r--src/zmq_connecter.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/zmq_connecter.cpp b/src/zmq_connecter.cpp
index fb77cdc..ca9bb77 100644
--- a/src/zmq_connecter.cpp
+++ b/src/zmq_connecter.cpp
@@ -45,7 +45,7 @@ zmq::zmq_connecter_t::zmq_connecter_t (class io_thread_t *io_thread_,
current_reconnect_ivl(options.reconnect_ivl)
{
int rc = tcp_connecter.set_address (protocol_, address_);
- zmq_assert (rc == 0);
+ zmq_assert (rc == 0); //TODO: take care ENOMEM, EINVAL
}
zmq::zmq_connecter_t::~zmq_connecter_t ()