Fix: initialize the cur_event variable before using it
[lttng-tools.git] / src / bin / lttng / commands / list.c
index bcf2f0a5f0b44e5bc7c4cd36746d94c9adc33d92..796a01784ac9d9dd0f7c32cc80a760fe67141518 100644 (file)
@@ -573,6 +573,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.023438 seconds and 4 git commands to generate.