diff options
author | Connor E <[email protected]> | 2018-11-13 14:42:00 +0000 |
---|---|---|
committer | Connor E <[email protected]> | 2018-11-13 14:42:00 +0000 |
commit | eda1bf769f239a9e8d5a9907255a330e3113a649 (patch) | |
tree | 4108de283672131e1bb87c4efa0820501454638e /sway/config.c | |
parent | b5d95f264d5b08f6228e05be680ee36fc06ca6d6 (diff) |
More frees.
Diffstat (limited to 'sway/config.c')
-rw-r--r-- | sway/config.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sway/config.c b/sway/config.c index c1320acf..e9b55061 100644 --- a/sway/config.c +++ b/sway/config.c @@ -123,6 +123,8 @@ void free_config(struct sway_config *config) { } list_free(config->criteria); } + free_mode(config->current_mode); + free_bar_config(config->current_bar); list_free(config->no_focus); list_free(config->active_bar_modifiers); list_free(config->config_chain); |