From 43e8868875e1d5287979e5b9060a9b16be45cc79 Mon Sep 17 00:00:00 2001 From: Martin Sustrik Date: Tue, 22 Feb 2011 16:23:36 +0100 Subject: Added explicit error message in case of memory exhaustion Signed-off-by: Martin Sustrik --- src/zmq_listener.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/zmq_listener.cpp') diff --git a/src/zmq_listener.cpp b/src/zmq_listener.cpp index 2a7f1eb..06f76bf 100644 --- a/src/zmq_listener.cpp +++ b/src/zmq_listener.cpp @@ -71,7 +71,7 @@ void zmq::zmq_listener_t::in_event () // Create and launch an init object. zmq_init_t *init = new (std::nothrow) zmq_init_t (io_thread, socket, NULL, fd, options); - zmq_assert (init); + alloc_assert (init); launch_child (init); } -- cgit v1.2.3