Fix: add missing ht iter node assignment in channel thread
authorDavid Goulet <dgoulet@efficios.com>
Tue, 4 Jun 2013 16:09:49 +0000 (12:09 -0400)
committerDavid Goulet <dgoulet@efficios.com>
Tue, 4 Jun 2013 16:10:36 +0000 (12:10 -0400)
Fixes #547

Signed-off-by: David Goulet <dgoulet@efficios.com>
src/common/consumer.c

index 6fd716bdb4cd34ff881659702ab88518097175b7..feec3562d64fcf46df09e834870377637fda75dc 100644 (file)
@@ -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);
This page took 0.026393 seconds and 4 git commands to generate.