Fix: use zmalloc() in lttng list.c
[lttng-tools.git] / src / bin / lttng / commands / list.c
index 12499ee408f1e545b3afbe727f2b0c3659a23082..14e390a030445c690f03bae266ca16bb1dead774 100644 (file)
@@ -16,6 +16,7 @@
  */
 
 #define _GNU_SOURCE
+#define _LGPL_SOURCE
 #include <inttypes.h>
 #include <popt.h>
 #include <stdio.h>
@@ -128,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.026686 seconds and 4 git commands to generate.