diff options
author | cflip <cflip@cflip.net> | 2023-01-12 15:56:46 -0700 |
---|---|---|
committer | cflip <cflip@cflip.net> | 2023-01-12 15:56:46 -0700 |
commit | 6c2d533798a3f3d56082dc9a72887fe05672bb5c (patch) | |
tree | 4b1b3a4e72e9cc52b74bb79f14bb8835e45bbabd | |
parent | 9e97d9b80dbe0786fedfa46942bd9308a47bc9be (diff) |
Free unicode translation table from font on destruction
This code change and commit message were both written using the text
editor!
-rw-r--r-- | font.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -103,4 +103,5 @@ PSFFont font_load(const char *filename) void font_destroy(PSFFont *font) { free(font->glyph_data); + free(font->unicode_desc); } |