diff options
Diffstat (limited to 'src/pipe.cpp')
-rw-r--r-- | src/pipe.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/pipe.cpp b/src/pipe.cpp index 14fc753..5780635 100644 --- a/src/pipe.cpp +++ b/src/pipe.cpp @@ -269,9 +269,6 @@ void zmq::writer_t::terminate () if (terminating) return; - // Rollback any unfinished messages. - rollback (); - if (msg_store == NULL || (msg_store->empty () && !extra_msg_flag)) write_delimiter (); else @@ -280,6 +277,9 @@ void zmq::writer_t::terminate () void zmq::writer_t::write_delimiter () { + // Rollback any unfinished messages. + rollback (); + // Push delimiter into the pipe. // Trick the compiler to belive that the tag is a valid pointer. zmq_msg_t msg; |