Yet one more fix for oversized messages.

Signed-off-by: Martin Sustrik <sustrik@250bpm.com>
This commit is contained in:
Martin Sustrik 2010-12-20 13:06:36 +01:00
parent 112d0cd52e
commit 51d2d9b9f8

View File

@ -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;
}