projects
/
lttng-tools.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
1124da5
)
Fix: possible use after free in consumer
author
David Goulet
<dgoulet@efficios.com>
Mon, 26 May 2014 18:12:23 +0000
(14:12 -0400)
committer
David 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
patch
|
blob
|
blame
|
history
diff --git
a/src/common/consumer.c
b/src/common/consumer.c
index aacabdb76d4acc5e54bd3cb9434bd789e0b71ca0..e11e46077c720d9023191024ae80af1a220f8d8b 100644
(file)
--- a/
src/common/consumer.c
+++ b/
src/common/consumer.c
@@
-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.026714 seconds
and
4
git commands to generate.