mirror of
https://github.com/swaywm/sway.git
synced 2024-11-11 04:54:14 +01:00
Use free_flat_list for simple char* list.
No need to reimplement free_flat_list functionality.
This commit is contained in:
parent
1825cf32bf
commit
053fb09d1e
@ -49,10 +49,7 @@ static void free_bar(struct bar_config *bar) {
|
||||
}
|
||||
list_free(bar->bindings);
|
||||
|
||||
for (i = 0; i < bar->outputs->length; ++i) {
|
||||
free(bar->outputs->items[i]);
|
||||
}
|
||||
list_free(bar->outputs);
|
||||
free_flat_list(bar->outputs);
|
||||
free(bar);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user