avoid usage of goto

Based on this suggestion: bc72af6e24 (commitcomment-85592855)
This commit is contained in:
Leonardo Hernández Hernández 2022-10-03 23:28:58 -05:00
parent b8bc54b65d
commit 8559141b30
No known key found for this signature in database
GPG Key ID: E538897EE11B9624
1 changed files with 5 additions and 7 deletions

12
dwl.c
View File

@ -2388,14 +2388,12 @@ unmapnotify(struct wl_listener *listener, void *data)
if (c->mon)
c->mon->un_map = 1;
if (client_is_unmanaged(c))
goto end;
if (!client_is_unmanaged(c)) {
wl_list_remove(&c->link);
setmon(c, NULL, 0);
wl_list_remove(&c->flink);
}
wl_list_remove(&c->link);
setmon(c, NULL, 0);
wl_list_remove(&c->flink);
end:
wl_list_remove(&c->commit.link);
wlr_scene_node_destroy(c->scene);
printstatus();