diff options
author | Ryan Dwyer <RyanDwyer@users.noreply.github.com> | 2018-09-21 20:05:39 +1000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-09-21 20:05:39 +1000 |
commit | 0798fadff2f2f74a7efd7c14c55737bac19de954 (patch) | |
tree | 86e1ab4983fec3586a8bbb0044216216e22cc1cb /sway/config | |
parent | 4289343e17615509fba5fe389d855f2292ba09bc (diff) | |
parent | fa4308c5abecaeef870aced574e9d05e24e62392 (diff) | |
download | sway-0798fadff2f2f74a7efd7c14c55737bac19de954.tar.xz |
Merge branch 'master' into render-output-segfault
Diffstat (limited to 'sway/config')
-rw-r--r-- | sway/config/input.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/sway/config/input.c b/sway/config/input.c index 9885e85c..ad5b96c8 100644 --- 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); } |