Commit 9da0c6d6 authored by Simon Giesecke's avatar Simon Giesecke

Problem: goto jumping backwards

Solution: replace by for loop
parent 62e48f83
......@@ -181,7 +181,7 @@ bool zmq::pipe_t::read (msg_t *msg_)
if (unlikely (state != active && state != waiting_for_delimiter))
return false;
read_message:
for (bool payload_read = false; !payload_read;) {
if (!inpipe->read (msg_)) {
in_active = false;
return false;
......@@ -194,7 +194,8 @@ read_message:
credential.set (data, msg_->size ());
const int rc = msg_->close ();
zmq_assert (rc == 0);
goto read_message;
} else
payload_read = true;
}
// If delimiter was read, start termination process of the pipe.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment