Fix: list_ust_events(): dangling pointer
[lttng-tools.git] / src / bin / lttng / commands / list.c
index 18ae026c29e9eeb77010b8d1a1cb15cd4327e2d6..fc1d82001e111befe11b2b7c75ea9e802654d519 100644 (file)
@@ -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;
 
@@ -1855,7 +1855,8 @@ int cmd_list(int argc, const char **argv)
                                        if (ret) {
                                                goto end;
                                        }
-                                       continue;
+
+                                       goto next_domain;
                                }
 
                                switch (domains[i].type) {
@@ -1875,6 +1876,7 @@ int cmd_list(int argc, const char **argv)
                                        goto end;
                                }
 
+next_domain:
                                if (lttng_opt_mi) {
                                        /* Close domain element */
                                        ret = mi_lttng_writer_close_element(writer);
This page took 0.025222 seconds and 5 git commands to generate.