Add some missing frees.

This commit is contained in:
Connor E 2018-11-13 13:45:01 +00:00
parent ee6b0ce24a
commit b5d95f264d
4 changed files with 7 additions and 3 deletions

View file

@ -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);
}