We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9d3efcb commit 6a5af3dCopy full SHA for 6a5af3d
1 file changed
src/udp_engine.cpp
@@ -397,7 +397,7 @@ void zmq::udp_engine_t::in_event ()
397
398
// Push message body to session
399
rc = session->push_msg (&msg);
400
- // Message body message doesn't fit in the pipe, drop and reset session state
+ // Message body doesn't fit in the pipe, drop and reset session state
401
if (rc != 0) {
402
rc = msg.close ();
403
errno_assert (rc == 0);
@@ -407,7 +407,6 @@ void zmq::udp_engine_t::in_event ()
407
return;
408
}
409
410
- errno_assert (rc == 0);
411
412
413
session->flush ();
0 commit comments