diff options
Diffstat (limited to 'src/dged/text.c')
| -rw-r--r-- | src/dged/text.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/dged/text.c b/src/dged/text.c index b3eb4ad..4d9a073 100644 --- a/src/dged/text.c +++ b/src/dged/text.c @@ -47,6 +47,8 @@ struct text *text_create(uint32_t initial_capacity) { } void text_destroy(struct text *text) { + VEC_DESTROY(&text->properties); + for (uint32_t li = 0; li < text->nlines; ++li) { free(text->lines[li].data); text->lines[li].data = NULL; |
