X-Git-Url: https://git.lttng.org/?p=lttng-tools.git;a=blobdiff_plain;f=src%2Fbin%2Flttng%2Fconf.c;h=3a40ec5208edad530ae923c2d72b791c9f0ee276;hp=55ed6352663e8f71dd2f496bf48cf5696d586bec;hb=9908810a4cfc351cc94e09ffef5898dfc33a9600;hpb=8ab7c0d9aa6d5dd0289a8ebc42b743ff0ac649c6 diff --git a/src/bin/lttng/conf.c b/src/bin/lttng/conf.c index 55ed63526..3a40ec520 100644 --- a/src/bin/lttng/conf.c +++ b/src/bin/lttng/conf.c @@ -16,6 +16,7 @@ */ #define _GNU_SOURCE +#define _LGPL_SOURCE #include #include #include @@ -24,7 +25,7 @@ #include #include -#include +#include #include #include "conf.h" @@ -190,7 +191,7 @@ char *config_read_session_name(char *path) #define NAME_MAX_SCANF_IS_A_BROKEN_API "254" #endif - session_name = malloc(NAME_MAX); + session_name = zmalloc(NAME_MAX); if (session_name == NULL) { ERR("Out of memory"); goto error;