Fix: use zmalloc() in lttng list.c
[lttng-tools.git] / src / bin / lttng / commands / list.c
index dd39c4fc595cbc14ddfdab3eb450e338e10c7605..5f452e58958d1e5a0fa2a4eff4a919a6e1141e46 100644 (file)
@@ -116,7 +116,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.035414 seconds and 4 git commands to generate.