From: Mathieu Desnoyers Date: Thu, 12 Apr 2012 15:45:36 +0000 (-0400) Subject: Fix: add missing ht_destroy at consumer teardown X-Git-Tag: v2.1.0-rc1~143 X-Git-Url: https://git.lttng.org/?p=lttng-tools.git;a=commitdiff_plain;h=d6ce1df2ef346f3d136e9ad62a53621d5306076d Fix: add missing ht_destroy at consumer teardown Signed-off-by: Mathieu Desnoyers Signed-off-by: David Goulet --- diff --git a/src/common/consumer.c b/src/common/consumer.c index ee5575262..dd8c621f1 100644 --- a/src/common/consumer.c +++ b/src/common/consumer.c @@ -636,6 +636,9 @@ void lttng_consumer_cleanup(void) } rcu_read_unlock(); + + lttng_ht_destroy(consumer_data.stream_ht); + lttng_ht_destroy(consumer_data.channel_ht); } /*