chiark / gitweb /
Prep v220: Apply "Fixes to user and session saving"
[elogind.git] / src / login / logind-session-dbus.c
index 3a7b1a0fb96010144f4a0e89301457dd2bdc10c1..b5ecc322f56e7fba9d6642a3b3e4e60daa6dc5a7 100644 (file)
@@ -163,7 +163,7 @@ static int property_get_idle_since_hint(
                 sd_bus_error *error) {
 
         Session *s = userdata;
-        dual_timestamp t;
+        dual_timestamp t = DUAL_TIMESTAMP_NULL;
         uint64_t u;
         int r;
 
@@ -701,6 +701,9 @@ int session_send_create_reply(Session *s, sd_bus_error *error) {
         if (!s->create_message)
                 return 0;
 
+        if (!sd_bus_error_is_set(error) && (s->scope_job || s->user->service_job))
+                return 0;
+
         c = s->create_message;
         s->create_message = NULL;
 
@@ -711,8 +714,8 @@ int session_send_create_reply(Session *s, sd_bus_error *error) {
         if (fifo_fd < 0)
                 return fifo_fd;
 
-        /* Update the session and user state files before we notify
-         * the client about the result. */
+        /* Update the session and user state file before we notify the client
+         * about the result. */
         session_save(s);
         user_save(s->user);