bdf2sfd

BDF to SFD converter, allowing to vectorize bitmap fonts
Log | Files | Refs | README | LICENSE

commit 6bdb274d0871524bb825d0aad937c7abd9954899
parent 667925134819af02c2ff8d45f96aa0c529187ca9
Author: Frederic Cambus <fred@statdns.com>
Date:   Thu, 20 Feb 2020 16:54:10 +0100

Free a bunch of allocations on exit, to appease LSan.

Diffstat:
Msrc/bdf2sfd.c | 5+++++
1 file changed, 5 insertions(+), 0 deletions(-)

diff --git a/src/bdf2sfd.c b/src/bdf2sfd.c @@ -286,5 +286,10 @@ main(int argc, char *argv[]) /* Clean up */ fclose(bdfFile); + free(font.name); + free(font.psname); + free(font.copyright); + free(font.version); + return EXIT_SUCCESS; }