diff options
author | Drew DeVault <sir@cmpwn.com> | 2017-10-05 23:04:20 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-10-05 23:04:20 -0400 |
commit | 9ffac1f319abd1396ffa37a7585c05ecdd042307 (patch) | |
tree | 32fd93c7e450919a5a66181a3f8d801a595d5f6d /sway/config.c | |
parent | 839064d278e69ff4e29811440098d2ef527abf1c (diff) | |
parent | 419a1087ac46cd2f226a457dd6a3a41091d06870 (diff) |
Merge pull request #1382 from 4e554c4c/buggy_outputs
Clean up output command
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 e0b65615..4cb080ab 100644 --- a/sway/config.c +++ b/sway/config.c @@ -128,6 +128,8 @@ void free_output_config(struct output_config *oc) { return; } free(oc->name); + free(oc->background); + free(oc->background_option); free(oc); } |