Fix: returned pids may be uninitialized
[lttng-tools.git] / src / lib / lttng-ctl / lttng-ctl.c
index 0dd12b26f3222584e2b53703a37364ce76c2dcb4..eff08df80ee937c46177765bf518f739a1d5d2a7 100644 (file)
@@ -2722,7 +2722,7 @@ int lttng_list_tracker_pids(struct lttng_handle *handle,
        int enabled = 1;
        struct lttcomm_session_msg lsm;
        size_t nr_pids;
-       int32_t *pids;
+       int32_t *pids = NULL;
 
        if (handle == NULL) {
                return -LTTNG_ERR_INVALID;
This page took 0.024493 seconds and 5 git commands to generate.