minor tweaks in pgm code

This commit is contained in:
malosek 2009-11-30 16:45:18 +01:00
parent 84585a9561
commit 9ccf2b42cf
2 changed files with 5 additions and 1 deletions

View File

@ -130,8 +130,12 @@ void zmq::pgm_sender_t::revive ()
zmq::pgm_sender_t::~pgm_sender_t ()
{
zmq_log (4, "pgm_sender_t destructor, %s(%i)\n",
__FILE__, __LINE__);
if (out_buffer) {
pgm_socket.free_buffer (out_buffer);
out_buffer = NULL;
}
}

View File

@ -358,7 +358,7 @@ int zmq::pgm_socket_t::open_transport (void)
// Sender transport.
} else {
// Set transport->can_recv = FALSE, waiting_pipe wont not be read.
// Set transport->can_recv = FALSE, waiting_pipe will not be read.
rc = pgm_transport_set_send_only (g_transport, TRUE);
if (rc != pgm_ok) {
errno = EINVAL;