chiark / gitweb /
logind: create the session fifo before saving the session file
[elogind.git] / src / login / logind-session-dbus.c
index 167d2ab8b4da98b43691e89d604ad6ee56f89d5f..fa9c0039f4748d3131e4a2d08791d57b1c6f2e1b 100644 (file)
@@ -644,14 +644,14 @@ int session_send_create_reply(Session *s, sd_bus_error *error) {
         if (error)
                 return sd_bus_reply_method_error(s->manager->bus, c, error);
 
-        /* Update the session state file before we notify the client
-         * about the result. */
-        session_save(s);
-
         fifo_fd = session_create_fifo(s);
         if (fifo_fd < 0)
                 return fifo_fd;
 
+        /* Update the session state file before we notify the client
+         * about the result. */
+        session_save(s);
+
         p = session_bus_path(s);
         if (!p)
                 return -ENOMEM;