summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFurkan Sahin <furkan-dev@proton.me>2022-09-22 10:41:45 +0200
committerFurkan Sahin <furkan-dev@proton.me>2022-09-22 10:41:45 +0200
commit072160a3deb136f485eabfc75fd38a712673992b (patch)
treee73c50560ed9dfafcbbb92c984db37b2bb07d527
parent57e5b3d53533366c78b452eb2ac6c03cd154f6d6 (diff)
check for NULL
-rw-r--r--sway/input/cursor.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sway/input/cursor.c b/sway/input/cursor.c
index 78a221d8..bf9c9b6b 100644
--- a/sway/input/cursor.c
+++ b/sway/input/cursor.c
@@ -1373,7 +1373,7 @@ void handle_pointer_constraint(struct wl_listener *listener, void *data) {
wl_signal_add(&constraint->events.destroy, &sway_constraint->destroy);
struct wlr_surface *surface = seat_get_focused_surface(seat);
- if (surface == constraint->surface) {
+ if (surface && surface == constraint->surface) {
sway_cursor_constrain(seat->cursor, constraint);
}
}