avoid usage of goto
Based on this suggestion: bc72af6e24 (commitcomment-85592855)
This commit is contained in:
parent
b8bc54b65d
commit
8559141b30
6
dwl.c
6
dwl.c
|
@ -2388,14 +2388,12 @@ unmapnotify(struct wl_listener *listener, void *data)
|
||||||
if (c->mon)
|
if (c->mon)
|
||||||
c->mon->un_map = 1;
|
c->mon->un_map = 1;
|
||||||
|
|
||||||
if (client_is_unmanaged(c))
|
if (!client_is_unmanaged(c)) {
|
||||||
goto end;
|
|
||||||
|
|
||||||
wl_list_remove(&c->link);
|
wl_list_remove(&c->link);
|
||||||
setmon(c, NULL, 0);
|
setmon(c, NULL, 0);
|
||||||
wl_list_remove(&c->flink);
|
wl_list_remove(&c->flink);
|
||||||
|
}
|
||||||
|
|
||||||
end:
|
|
||||||
wl_list_remove(&c->commit.link);
|
wl_list_remove(&c->commit.link);
|
||||||
wlr_scene_node_destroy(c->scene);
|
wlr_scene_node_destroy(c->scene);
|
||||||
printstatus();
|
printstatus();
|
||||||
|
|
Loading…
Reference in a new issue