summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAntonin Décimo <antonin.decimo@gmail.com>2019-08-07 16:02:07 +0200
committerDrew DeVault <sir@cmpwn.com>2019-08-20 13:27:52 +0900
commitee4050157093f85aa76c09ca94d8d0269d0ff9f6 (patch)
treea85faad7cb5c7f9d7c168d97e2cdc3f06de47a57
parent3896bdaa68de96b8fffaa9233d87ba19c176db50 (diff)
input: check pointer against nullptr
-rw-r--r--sway/input/seatop_default.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sway/input/seatop_default.c b/sway/input/seatop_default.c
index 881384719..e3726dd1c 100644
--- a/sway/input/seatop_default.c
+++ b/sway/input/seatop_default.c
@@ -241,7 +241,7 @@ static void handle_button(struct sway_seat *seat, uint32_t time_msec,
bool is_floating_or_child = cont && container_is_floating_or_child(cont);
bool is_fullscreen_or_child = cont && container_is_fullscreen_or_child(cont);
enum wlr_edges edge = cont ? find_edge(cont, cursor) : WLR_EDGE_NONE;
- enum wlr_edges resize_edge = edge ?
+ enum wlr_edges resize_edge = cont && edge ?
find_resize_edge(cont, cursor) : WLR_EDGE_NONE;
bool on_border = edge != WLR_EDGE_NONE;
bool on_contents = cont && !on_border && surface;