summaryrefslogtreecommitdiff
path: root/src/decoder.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/decoder.cpp')
-rw-r--r--src/decoder.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/decoder.cpp b/src/decoder.cpp
index 0b2a806..c8ca715 100644
--- a/src/decoder.cpp
+++ b/src/decoder.cpp
@@ -65,6 +65,8 @@ bool zmq::decoder_t::one_byte_size_ready ()
// message and thus we can treat it as uninitialised...
int rc = zmq_msg_init_size (&in_progress, *tmpbuf - 1);
if (rc != 0 && errno == ENOMEM) {
+ rc = zmq_msg_init (&in_progress);
+ errno_assert (rc == 0);
decoding_error ();
return false;
}