Merge pull request #370 from sce/fix_free_bar

config: free_bar: Check if outputs is NULL.
This commit is contained in:
Drew DeVault 2015-12-20 09:20:03 -05:00
commit 702cf053e2

View File

@ -53,7 +53,9 @@ static void free_bar(struct bar_config *bar) {
}
list_free(bar->bindings);
if (bar->outputs) {
free_flat_list(bar->outputs);
}
free(bar);
}