diff options
author | Connor E <38229097+c-edw@users.noreply.github.com> | 2018-11-13 13:45:01 +0000 |
---|---|---|
committer | Connor E <38229097+c-edw@users.noreply.github.com> | 2018-11-13 13:45:01 +0000 |
commit | b5d95f264d5b08f6228e05be680ee36fc06ca6d6 (patch) | |
tree | b26a13cd9d0a8bc52872a930211aef029f5c0dbc /sway/config | |
parent | ee6b0ce24ae74cfae5d41985cacdff6065c8f534 (diff) |
Add some missing frees.
Diffstat (limited to 'sway/config')
-rw-r--r-- | sway/config/output.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sway/config/output.c b/sway/config/output.c index 2b041353..07543e3c 100644 --- a/sway/config/output.c +++ b/sway/config/output.c @@ -326,6 +326,7 @@ void free_output_config(struct output_config *oc) { free(oc->name); free(oc->background); free(oc->background_option); + free(oc->background_fallback); free(oc); } |