wlr_idle: Handle inert seats

This commit is contained in:
Väinö Mäkelä 2023-06-01 13:57:30 +03:00 committed by Simon Ser
parent f988a75a80
commit 126222884d
1 changed files with 3 additions and 0 deletions

View File

@ -165,6 +165,9 @@ static void create_idle_timer(struct wl_client *client,
}
wl_resource_set_implementation(resource, &idle_timeout_impl,
NULL, handle_timer_resource_destroy);
if (client_seat == NULL) {
return;
}
if (!create_timer(idle, client_seat->seat, timeout, resource)) {
wl_resource_post_no_memory(resource);