From: Jérémie Galarneau Date: Fri, 24 Jul 2015 21:54:47 +0000 (-0400) Subject: Fix: Crash on lttng list -j/-l/-p when no events are present X-Git-Tag: v2.7.0-rc2~180 X-Git-Url: https://git.lttng.org./?a=commitdiff_plain;h=7edc8ff0bbf8110f5333d108ecb83c1059849f10;p=lttng-tools.git Fix: Crash on lttng list -j/-l/-p when no events are present The lttng client will free an uninitialized pointer whenever a the lttng list command is invoked on a domain which involves the log4j, JUL or Python agents. Signed-off-by: Jérémie Galarneau --- diff --git a/src/bin/lttng/commands/list.c b/src/bin/lttng/commands/list.c index 1eac93487..108f76065 100644 --- a/src/bin/lttng/commands/list.c +++ b/src/bin/lttng/commands/list.c @@ -409,7 +409,7 @@ static int list_agent_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; const char *agent_domain_str;