mirror of
https://codeberg.org/dwl/dwl.git
synced 2025-01-15 05:17:29 -08:00
fix posible NULL-dereference in wl_surface.commit handler
This commit is contained in:
parent
56c19349a1
commit
8c948f751a
1 changed files with 1 additions and 1 deletions
2
dwl.c
2
dwl.c
|
@ -826,7 +826,7 @@ commitnotify(struct wl_listener *listener, void *data)
|
||||||
{
|
{
|
||||||
Client *c = wl_container_of(listener, c, commit);
|
Client *c = wl_container_of(listener, c, commit);
|
||||||
|
|
||||||
if (client_surface(c)->mapped)
|
if (client_surface(c)->mapped && c->mon)
|
||||||
resize(c, c->geom, (c->isfloating && !c->isfullscreen), c->bw > 0);
|
resize(c, c->geom, (c->isfloating && !c->isfullscreen), c->bw > 0);
|
||||||
|
|
||||||
/* mark a pending resize as completed */
|
/* mark a pending resize as completed */
|
||||||
|
|
Loading…
Reference in a new issue