Skip to content

Commit

Permalink
logind: simplify code
Browse files Browse the repository at this point in the history
Follow-up for 4885d74.
  • Loading branch information
keszybz committed Jun 23, 2022
1 parent 6cacdb3 commit e5c09aa
Showing 1 changed file with 4 additions and 10 deletions.
14 changes: 4 additions & 10 deletions src/login/logind-session.c
Original file line number Diff line number Diff line change
Expand Up @@ -359,12 +359,11 @@ int session_save(Session *s) {
}

static int session_load_devices(Session *s, const char *devices) {
const char *p;
int r = 0;

assert(s);

for (p = devices;;) {
for (const char *p = devices;;) {
_cleanup_free_ char *word = NULL;
SessionDevice *sd;
dev_t dev;
Expand Down Expand Up @@ -551,7 +550,7 @@ int session_load(Session *s) {
s->class = c;
}

if (state && streq(state, "closing"))
if (streq_ptr(state, "closing"))
s->stopping = true;

if (s->fifo_path) {
Expand Down Expand Up @@ -1050,11 +1049,8 @@ int session_set_display(Session *s, const char *display) {
assert(s);
assert(display);

if (streq(s->display, display))
return 0;

r = free_and_strdup(&s->display, display);
if (r < 0)
if (r <= 0) /* 0 means the strings were equal */
return r;

session_save(s);
Expand Down Expand Up @@ -1333,9 +1329,7 @@ void session_leave_vt(Session *s) {
}

bool session_is_controller(Session *s, const char *sender) {
assert(s);

return streq_ptr(s->controller, sender);
return streq_ptr(ASSERT_PTR(s)->controller, sender);
}

static void session_release_controller(Session *s, bool notify) {
Expand Down

0 comments on commit e5c09aa

Please sign in to comment.