From: Jonathan Rajotte Date: Tue, 13 Mar 2018 22:19:48 +0000 (-0400) Subject: Cleanup: app is never used by alloc_ust_app_session() X-Git-Tag: v2.11.0-rc1~205 X-Git-Url: https://git.lttng.org/?p=lttng-tools.git;a=commitdiff_plain;h=40bbd087934edf0be7c21165786aad3fabb7e7b5;hp=766048521f3bc7beb1209e2bb939ca2b42532a52;ds=sidebyside Cleanup: app is never used by alloc_ust_app_session() Signed-off-by: Jonathan Rajotte Signed-off-by: Jérémie Galarneau --- diff --git a/src/bin/lttng-sessiond/ust-app.c b/src/bin/lttng-sessiond/ust-app.c index 97083e15a..ed140f074 100644 --- a/src/bin/lttng-sessiond/ust-app.c +++ b/src/bin/lttng-sessiond/ust-app.c @@ -979,7 +979,7 @@ end: * Alloc new UST app session. */ static -struct ust_app_session *alloc_ust_app_session(struct ust_app *app) +struct ust_app_session *alloc_ust_app_session(void) { struct ust_app_session *ua_sess; @@ -2171,7 +2171,7 @@ static int find_or_create_ust_app_session(struct ltt_ust_session *usess, if (ua_sess == NULL) { DBG2("UST app pid: %d session id %" PRIu64 " not found, creating it", app->pid, usess->id); - ua_sess = alloc_ust_app_session(app); + ua_sess = alloc_ust_app_session(); if (ua_sess == NULL) { /* Only malloc can failed so something is really wrong */ ret = -ENOMEM;