diff options
author | Daniel Lockyer <thisisdaniellockyer@gmail.com> | 2016-04-29 18:09:56 +0100 |
---|---|---|
committer | Daniel Lockyer <thisisdaniellockyer@gmail.com> | 2016-04-29 18:09:56 +0100 |
commit | b8722ecd5f43c2c6f132809595109e9cb5fbfec6 (patch) | |
tree | 2116dbeefc12ad87ebf0d87c4a36c75ebfb430f8 /sway | |
parent | e077ebdc722204bf88072dad376fa1dbe9993c95 (diff) | |
download | sway-b8722ecd5f43c2c6f132809595109e9cb5fbfec6.tar.xz |
sway/config.c: Leading on from cdf017c, we need to free path
Diffstat (limited to 'sway')
-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 cfd3fd93..41879b87 100644 --- a/sway/config.c +++ b/sway/config.c @@ -357,6 +357,8 @@ bool load_main_config(const char *file, bool is_active) { update_active_bar_modifiers(); } + free(path); + return success; } |