Fix: possible use after free in consumer
authorDavid Goulet <dgoulet@efficios.com>
Mon, 26 May 2014 18:12:23 +0000 (14:12 -0400)
committerDavid Goulet <dgoulet@efficios.com>
Mon, 26 May 2014 18:13:00 +0000 (14:13 -0400)
Fixes the coverity issue 1019959.

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

index aacabdb76d4acc5e54bd3cb9434bd789e0b71ca0..e11e46077c720d9023191024ae80af1a220f8d8b 100644 (file)
@@ -1308,6 +1308,10 @@ void lttng_consumer_destroy(struct lttng_consumer_local_data *ctx)
 
        DBG("Consumer destroying it. Closing everything.");
 
+       if (!ctx) {
+               return;
+       }
+
        destroy_data_stream_ht(data_ht);
        destroy_metadata_stream_ht(metadata_ht);
 
This page took 0.025674 seconds and 4 git commands to generate.