mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-02-15 22:05:24 -05:00
grid: add grid_free()
This commit is contained in:
parent
ebf8070244
commit
bb74fe3f7d
3 changed files with 18 additions and 14 deletions
16
terminal.c
16
terminal.c
|
|
@ -1437,12 +1437,8 @@ term_destroy(struct terminal *term)
|
|||
mtx_unlock(&term->render.workers.lock);
|
||||
|
||||
free(term->vt.osc.data);
|
||||
for (int row = 0; row < term->normal.num_rows; row++)
|
||||
grid_row_free(term->normal.rows[row]);
|
||||
free(term->normal.rows);
|
||||
for (int row = 0; row < term->alt.num_rows; row++)
|
||||
grid_row_free(term->alt.rows[row]);
|
||||
free(term->alt.rows);
|
||||
grid_free(&term->normal);
|
||||
grid_free(&term->alt);
|
||||
|
||||
tll_free(term->normal.scroll_damage);
|
||||
tll_free(term->alt.scroll_damage);
|
||||
|
|
@ -1490,14 +1486,6 @@ term_destroy(struct terminal *term)
|
|||
tll_remove(term->ptmx_paste_buffers, it);
|
||||
}
|
||||
|
||||
tll_foreach(term->normal.sixel_images, it) {
|
||||
sixel_destroy(&it->item);
|
||||
tll_remove(term->normal.sixel_images, it);
|
||||
}
|
||||
tll_foreach(term->alt.sixel_images, it) {
|
||||
sixel_destroy(&it->item);
|
||||
tll_remove(term->alt.sixel_images, it);
|
||||
}
|
||||
sixel_fini(term);
|
||||
|
||||
urls_reset(term);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue