Fix: initialize the cur_event variable before using it
[lttng-tools.git] / src / bin / lttng / commands / list.c
index 108925eecca9134d90e59462ee3a2419b64985e7..e4c029e2951e8ecc01e6256aac71108c46bdbfce 100644 (file)
@@ -565,6 +565,8 @@ static int mi_list_ust_event_fields(struct lttng_event_field *fields, int count,
        int event_element_open = 0;
        struct lttng_event cur_event;
 
+       memset(&cur_event, 0, sizeof(cur_event));
+
        /* Open domains element */
        ret = mi_lttng_domains_open(writer);
        if (ret) {
This page took 0.023702 seconds and 4 git commands to generate.