mirror of
https://github.com/hyprwm/wlroots-hyprland.git
synced 2024-11-22 12:55:58 +01:00
cursor: unset wlr_output_cursor.texture on surface destroy
When the surface is destroyed, its current wlr_texture is about to get destroyed as well. Reset wlr_output_cursor.texture to prevent use-after-free. Closes: https://gitlab.freedesktop.org/wlroots/wlroots/-/issues/3652
This commit is contained in:
parent
9c9e3f6263
commit
6668c822b3
1 changed files with 1 additions and 0 deletions
|
@ -424,6 +424,7 @@ static void output_cursor_output_handle_surface_destroy(
|
|||
struct wlr_cursor_output_cursor *output_cursor =
|
||||
wl_container_of(listener, output_cursor, surface_destroy);
|
||||
assert(output_cursor->surface != NULL);
|
||||
wlr_output_cursor_set_buffer(output_cursor->output_cursor, NULL, 0, 0);
|
||||
cursor_output_cursor_reset_image(output_cursor);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue