Fix: use zmalloc() in lttng list.c
[lttng-tools.git] / src / bin / lttng / commands / list.c
index f69d34db99aab59b115cf3c6cdf9b77f2a3a9252..14e390a030445c690f03bae266ca16bb1dead774 100644 (file)
@@ -129,7 +129,7 @@ static char *get_cmdline_by_pid(pid_t pid)
        }
 
        /* Caller must free() *cmdline */
-       cmdline = malloc(PATH_MAX);
+       cmdline = zmalloc(PATH_MAX);
        if (!cmdline) {
                perror("malloc cmdline");
                goto end;
This page took 0.0241980000000001 seconds and 4 git commands to generate.