From: Philippe Proulx Date: Wed, 26 Aug 2015 17:40:18 +0000 (-0400) Subject: Fix: list_ust_events(): dangling pointer X-Git-Tag: v2.6.1~22 X-Git-Url: https://git.liburcu.org/?a=commitdiff_plain;h=80217cf84b04f25d92d8ee5d6b9460381fa31762;p=lttng-tools.git Fix: list_ust_events(): dangling pointer Fixes #908 Signed-off-by: Philippe Proulx Signed-off-by: Jérémie Galarneau --- diff --git a/src/bin/lttng/commands/list.c b/src/bin/lttng/commands/list.c index 3d0ce0304..bcf2f0a5f 100644 --- a/src/bin/lttng/commands/list.c +++ b/src/bin/lttng/commands/list.c @@ -501,7 +501,7 @@ static int list_ust_events(void) int i, size, ret = CMD_SUCCESS; struct lttng_domain domain; struct lttng_handle *handle; - struct lttng_event *event_list; + struct lttng_event *event_list = NULL; pid_t cur_pid = 0; char *cmdline = NULL;