From: Philippe Proulx Date: Wed, 26 Aug 2015 17:40:18 +0000 (-0400) Subject: Fix: list_ust_events(): dangling pointer X-Git-Tag: v2.7.0-rc2~61 X-Git-Url: http://git.lttng.org/?a=commitdiff_plain;h=5474911e8be564728c5adcb70cb161af609caad7;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 0492c804a..108925eec 100644 --- a/src/bin/lttng/commands/list.c +++ b/src/bin/lttng/commands/list.c @@ -493,7 +493,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;