xwayland: do not free cursor in handle_server_ready()

If XWayland terminates for any reason, xwm_set_cursor() has to
to be called again, so the cursor has to stick around.
This commit is contained in:
Michele Sorcinelli 2021-08-16 19:17:24 +01:00 committed by Simon Ser
parent 0c19a28266
commit cae7b98136
1 changed files with 0 additions and 2 deletions

View File

@ -50,8 +50,6 @@ static void handle_server_ready(struct wl_listener *listener, void *data) {
struct wlr_xwayland_cursor *cur = xwayland->cursor;
xwm_set_cursor(xwayland->xwm, cur->pixels, cur->stride, cur->width,
cur->height, cur->hotspot_x, cur->hotspot_y);
free(cur);
xwayland->cursor = NULL;
}
wlr_signal_emit_safe(&xwayland->events.ready, NULL);