diff options
author | Connor E <38229097+c-edw@users.noreply.github.com> | 2018-11-13 14:42:00 +0000 |
---|---|---|
committer | Connor E <38229097+c-edw@users.noreply.github.com> | 2018-11-13 14:42:00 +0000 |
commit | eda1bf769f239a9e8d5a9907255a330e3113a649 (patch) | |
tree | 4108de283672131e1bb87c4efa0820501454638e /sway/config | |
parent | b5d95f264d5b08f6228e05be680ee36fc06ca6d6 (diff) |
More frees.
Diffstat (limited to 'sway/config')
-rw-r--r-- | sway/config/bar.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sway/config/bar.c b/sway/config/bar.c index 8b88642e..7bca5f49 100644 --- a/sway/config/bar.c +++ b/sway/config/bar.c @@ -46,6 +46,7 @@ void free_bar_config(struct bar_config *bar) { free(bar->position); free(bar->hidden_state); free(bar->status_command); + free(bar->swaybar_command); free(bar->font); free(bar->separator_symbol); for (int i = 0; i < bar->bindings->length; i++) { |