mirror of
https://gitlab.freedesktop.org/wlroots/wlroots.git
synced 2025-10-29 05:40:12 -04:00
Release pointers in examples/multi-pointer
This commit is contained in:
parent
de16defb21
commit
6af77e3d9e
1 changed files with 5 additions and 0 deletions
|
|
@ -330,6 +330,11 @@ int main(int argc, char *argv[]) {
|
|||
cursor_destroy(cursor);
|
||||
}
|
||||
|
||||
struct sample_pointer *pointer, *tmp_pointer;
|
||||
wl_list_for_each_safe(pointer, tmp_pointer, &state.pointers, link) {
|
||||
free(pointer);
|
||||
}
|
||||
|
||||
wlr_xcursor_theme_destroy(theme);
|
||||
wlr_output_layout_destroy(state.layout);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue