commit a2090d4222aba4c708aa086e674cfe82ee7cb323 parent db2845963408dd0d66a3587469c6f26bfa4d9e1f Author: emersion <contact@emersion.fr> Date: Wed, 19 Sep 2018 14:19:22 +0200 Merge branch 'master' into create-output-command Diffstat:
| M | sway/config/input.c | | | 7 | +++++++ |
1 file changed, 7 insertions(+), 0 deletions(-)
diff --git a/sway/config/input.c b/sway/config/input.c @@ -140,6 +140,13 @@ void free_input_config(struct input_config *ic) { return; } free(ic->identifier); + free(ic->xkb_layout); + free(ic->xkb_model); + free(ic->xkb_options); + free(ic->xkb_rules); + free(ic->xkb_variant); + free(ic->mapped_from_region); + free(ic->mapped_to_output); free(ic); }