grid: grid_free(): free scroll damage list

This commit is contained in:
Daniel Eklöf 2021-02-22 10:31:40 +01:00
parent 54b5ae95c1
commit 2cb624ee43
No known key found for this signature in database
GPG key ID: 5BBD4992C116573F
2 changed files with 1 additions and 3 deletions

1
grid.c
View file

@ -105,6 +105,7 @@ grid_free(struct grid *grid)
}
free(grid->rows);
tll_free(grid->scroll_damage);
}
void