Skip to content

Commit

Permalink
Merge bitcoin#7621: Fixes ZMQ startup with bad arguments.
Browse files Browse the repository at this point in the history
0040118 Fixes ZMQ startup with bad arguments. (mrbandrews)
  • Loading branch information
laanwj committed Mar 15, 2016
2 parents 48f3905 + 0040118 commit a6a8607
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
1 change: 0 additions & 1 deletion src/zmq/zmqnotificationinterface.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,6 @@ bool CZMQNotificationInterface::Initialize()

if (i!=notifiers.end())
{
Shutdown();
return false;
}

Expand Down
1 change: 1 addition & 0 deletions src/zmq/zmqpublishnotifier.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,7 @@ bool CZMQAbstractPublishNotifier::Initialize(void *pcontext)
if (rc!=0)
{
zmqError("Failed to bind address");
zmq_close(psocket);
return false;
}

Expand Down

0 comments on commit a6a8607

Please sign in to comment.