You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
854 B
26 lines
854 B
8 months ago
|
From eebbeada76b0fa4e252ecf4e25b088733636fe89 Mon Sep 17 00:00:00 2001
|
||
|
From: Lennart Poettering <lennart@poettering.net>
|
||
|
Date: Mon, 6 Aug 2018 18:19:45 +0200
|
||
|
Subject: [PATCH] logind: correct bad clean-up path
|
||
|
|
||
|
(cherry picked from commit d88ffeeeefda4c3447223fd36f8e30f23c931e48)
|
||
|
|
||
|
Related: #1642460
|
||
|
---
|
||
|
src/login/logind-dbus.c | 2 +-
|
||
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
||
|
|
||
|
diff --git a/src/login/logind-dbus.c b/src/login/logind-dbus.c
|
||
|
index ae9abc9bce..4b2c418453 100644
|
||
|
--- a/src/login/logind-dbus.c
|
||
|
+++ b/src/login/logind-dbus.c
|
||
|
@@ -845,7 +845,7 @@ static int method_create_session(sd_bus_message *message, void *userdata, sd_bus
|
||
|
|
||
|
r = sd_bus_message_enter_container(message, 'a', "(sv)");
|
||
|
if (r < 0)
|
||
|
- return r;
|
||
|
+ goto fail;
|
||
|
|
||
|
r = session_start(session, message);
|
||
|
if (r < 0)
|