mirror of
https://github.com/hyprwm/wlroots-hyprland.git
synced 2024-11-02 11:55:59 +01:00
Merge pull request #194 from versusvoid/memory
Free xkb structures on wlr_keyboard destroy
This commit is contained in:
commit
ddba002d2a
1 changed files with 2 additions and 0 deletions
|
@ -42,6 +42,8 @@ void wlr_keyboard_destroy(struct wlr_keyboard *kb) {
|
|||
} else {
|
||||
wl_list_remove(&kb->events.key.listener_list);
|
||||
}
|
||||
xkb_state_unref(kb->xkb_state);
|
||||
xkb_map_unref(kb->keymap);
|
||||
close(kb->keymap_fd);
|
||||
free(kb);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue