root: free non_desktop_outputs list on root_destroy

This fixes a memory leak because the non_desktop_outputs list was not
freed when the root was destroyed.
master
Tobias Predel 2 years ago committed by Simon Ser
parent ae2d14ceeb
commit b31e97e55d

@ -50,6 +50,7 @@ struct sway_root *root_create(void) {
void root_destroy(struct sway_root *root) { void root_destroy(struct sway_root *root) {
wl_list_remove(&root->output_layout_change.link); wl_list_remove(&root->output_layout_change.link);
list_free(root->scratchpad); list_free(root->scratchpad);
list_free(root->non_desktop_outputs);
list_free(root->outputs); list_free(root->outputs);
wlr_output_layout_destroy(root->output_layout); wlr_output_layout_destroy(root->output_layout);
free(root); free(root);

Loading…
Cancel
Save