X-Git-Url: https://git.lttng.org/?p=lttng-tools.git;a=blobdiff_plain;f=src%2Fbin%2Flttng-sessiond%2Fust-consumer.c;h=d8d6c329f5d3334555f05e0418a699c46cec6dce;hp=eac9956574e6c9e9b284c7d8ef6dd12e9768a370;hb=61ba6b6dc790245afa7fbec89a9811f6c7603b00;hpb=2b29c638278807c1536634ce49f0c9c053b3ab5f diff --git a/src/bin/lttng-sessiond/ust-consumer.c b/src/bin/lttng-sessiond/ust-consumer.c index eac995657..d8d6c329f 100644 --- a/src/bin/lttng-sessiond/ust-consumer.c +++ b/src/bin/lttng-sessiond/ust-consumer.c @@ -53,8 +53,11 @@ static char *setup_trace_path(struct consumer_output *consumer, health_code_update(); - /* Allocate our self the string to make sure we never exceed PATH_MAX. */ - pathname = zmalloc(PATH_MAX); + /* + * Allocate the string ourself to make sure we never exceed + * LTTNG_PATH_MAX. + */ + pathname = zmalloc(LTTNG_PATH_MAX); if (!pathname) { goto error; } @@ -62,7 +65,7 @@ static char *setup_trace_path(struct consumer_output *consumer, /* Get correct path name destination */ if (consumer->type == CONSUMER_DST_LOCAL) { /* Set application path to the destination path */ - ret = snprintf(pathname, PATH_MAX, "%s%s%s%s", + ret = snprintf(pathname, LTTNG_PATH_MAX, "%s%s%s%s", consumer->dst.session_root_path, consumer->chunk_path, consumer->subdir, ua_sess->path); @@ -81,7 +84,7 @@ static char *setup_trace_path(struct consumer_output *consumer, } } } else { - ret = snprintf(pathname, PATH_MAX, "%s%s%s%s", + ret = snprintf(pathname, LTTNG_PATH_MAX, "%s%s%s%s", consumer->dst.net.base_dir, consumer->chunk_path, consumer->subdir,