Browse Source

Fixes ZMQ startup with bad arguments.

pull/4/head
mrbandrews 8 years ago
committed by Jack Grigg
parent
commit
d4cca6a320
No known key found for this signature in database GPG Key ID: 6A6914DAFBEA00DA
  1. 1
      src/zmq/zmqnotificationinterface.cpp
  2. 1
      src/zmq/zmqpublishnotifier.cpp

1
src/zmq/zmqnotificationinterface.cpp

@ -100,7 +100,6 @@ bool CZMQNotificationInterface::Initialize()
if (i!=notifiers.end())
{
Shutdown();
return false;
}

1
src/zmq/zmqpublishnotifier.cpp

@ -68,6 +68,7 @@ bool CZMQAbstractPublishNotifier::Initialize(void *pcontext)
if (rc!=0)
{
zmqError("Failed to bind address");
zmq_close(psocket);
return false;
}

Loading…
Cancel
Save