Fix memory leaks and modify kernel session creation
[lttng-tools.git] / ltt-sessiond / main.c
index 29e05b9e9ed23cbcaf6b5c9b770caf1388a574b2..edbdd643a84f5e1c69b3118663af7fafb2b274fa 100644 (file)
@@ -1561,13 +1561,6 @@ static int create_kernel_session(struct ltt_session *session)
                session->kernel_session->consumer_fd = kconsumerd_cmd_sock;
        }
 
-       ret = asprintf(&session->kernel_session->trace_path, "%s/kernel",
-                       session->path);
-       if (ret < 0) {
-               perror("asprintf kernel traces path");
-               goto error;
-       }
-
        ret = mkdir_recursive(session->kernel_session->trace_path,
                        S_IRWXU | S_IRWXG, geteuid(), allowed_group());
        if (ret < 0) {
This page took 0.024489 seconds and 4 git commands to generate.