mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-02-18 22:05:25 -05:00
term_destroy(): free interactive_resizing.grid
This grid is normally unallocated, but may be allocated if we are exiting (for whatever reason) in the middle of an interactive resize.
This commit is contained in:
parent
2e9b3ceb95
commit
09d52d5db6
1 changed files with 2 additions and 0 deletions
|
|
@ -1752,6 +1752,8 @@ term_destroy(struct terminal *term)
|
|||
|
||||
grid_free(&term->normal);
|
||||
grid_free(&term->alt);
|
||||
grid_free(term->interactive_resizing.grid);
|
||||
free(term->interactive_resizing.grid);
|
||||
|
||||
free(term->foot_exe);
|
||||
free(term->cwd);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue