X-Git-Url: https://git.lttng.org/?a=blobdiff_plain;f=src%2Fbin%2Flttng-relayd%2Futils.c;h=db124bc354515c22f5eef55e89a1527e6b55c9ce;hb=f8be11834749a7ba0b5f499b11c048d62d98a068;hp=837c828d22b935cb7eb353a60f6d3e93f2dc277d;hpb=753871f3b4487af73ffe955783dba4f11960c3d3;p=lttng-tools.git diff --git a/src/bin/lttng-relayd/utils.c b/src/bin/lttng-relayd/utils.c index 837c828d2..db124bc35 100644 --- a/src/bin/lttng-relayd/utils.c +++ b/src/bin/lttng-relayd/utils.c @@ -33,8 +33,7 @@ static char *create_output_path_auto(const char *path_name) { int ret; char *traces_path = NULL; - char *alloc_path = NULL; - char *default_path; + const char *default_path; default_path = utils_get_home_dir(); if (default_path == NULL) { @@ -42,19 +41,13 @@ static char *create_output_path_auto(const char *path_name) Please specify an output path using -o, --output PATH"); goto exit; } - alloc_path = strdup(default_path); - if (alloc_path == NULL) { - PERROR("Path allocation"); - goto exit; - } ret = asprintf(&traces_path, "%s/" DEFAULT_TRACE_DIR_NAME - "/%s", alloc_path, path_name); + "/%s", default_path, path_name); if (ret < 0) { PERROR("asprintf trace dir name"); goto exit; } exit: - free(alloc_path); return traces_path; }