From: David Goulet Date: Tue, 4 Jun 2013 16:09:49 +0000 (-0400) Subject: Fix: add missing ht iter node assignment in channel thread X-Git-Url: http://git.efficios.com/?p=lttng-tools.git;a=commitdiff_plain;h=f623cc0b347c449f302ac674937b1c0c647495ce Fix: add missing ht iter node assignment in channel thread Fixes #547 Signed-off-by: David Goulet --- diff --git a/src/common/consumer.c b/src/common/consumer.c index 6fd716bdb..feec3562d 100644 --- a/src/common/consumer.c +++ b/src/common/consumer.c @@ -2734,6 +2734,7 @@ restart: break; } lttng_poll_del(&events, chan->wait_fd); + iter.iter.node = &chan->wait_fd_node.node; ret = lttng_ht_del(channel_ht, &iter); assert(ret == 0); consumer_close_channel_streams(chan);