mirror of
https://github.com/swaywm/sway.git
synced 2024-11-16 13:13:17 +00:00
config: free_bar: Check if outputs is NULL.
bar_config.outputs is NULL if no output is explicitly defined in config (ie. use for for all outputs).
This commit is contained in:
parent
3777c8993b
commit
2779559b15
|
@ -53,7 +53,9 @@ static void free_bar(struct bar_config *bar) {
|
||||||
}
|
}
|
||||||
list_free(bar->bindings);
|
list_free(bar->bindings);
|
||||||
|
|
||||||
|
if (bar->outputs) {
|
||||||
free_flat_list(bar->outputs);
|
free_flat_list(bar->outputs);
|
||||||
|
}
|
||||||
free(bar);
|
free(bar);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue