diff options
author | Drew DeVault <sir@cmpwn.com> | 2018-07-06 08:43:33 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-07-06 08:43:33 -0700 |
commit | 817e847749240a0c04756c37c88dc554efc56c9e (patch) | |
tree | ef2a716f8ea06ce8bdc63d1a682901b24e5bfcf0 /sway/input | |
parent | 55c54bb63b82ee75e1893b48b3ce18f7317c6199 (diff) | |
parent | b3c55dd909b070625c9bfcebcb89cb8463e2ffc9 (diff) | |
download | sway-817e847749240a0c04756c37c88dc554efc56c9e.tar.xz |
Merge pull request #2206 from martinetd/leaks
Fix a bunch of leaks
Diffstat (limited to 'sway/input')
-rw-r--r-- | sway/input/keyboard.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/sway/input/keyboard.c b/sway/input/keyboard.c index ec149d06..182536de 100644 --- a/sway/input/keyboard.c +++ b/sway/input/keyboard.c @@ -420,6 +420,9 @@ void sway_keyboard_destroy(struct sway_keyboard *keyboard) { if (!keyboard) { return; } + if (keyboard->keymap) { + xkb_keymap_unref(keyboard->keymap); + } wl_list_remove(&keyboard->keyboard_key.link); wl_list_remove(&keyboard->keyboard_modifiers.link); free(keyboard); |