From: git Date: Sat, 23 May 2026 19:12:05 +0000 (-0400) Subject: free the intermediate base64 font buffer X-Git-Url: https://git.datadissipation.net/?a=commitdiff_plain;h=refs%2Fheads%2Fmaster;p=mage.git free the intermediate base64 font buffer --- diff --git a/mage.c b/mage.c index 6d12d33..0249c31 100644 --- a/mage.c +++ b/mage.c @@ -222,6 +222,8 @@ fontpreload(void) errx(1, "failed to allocate base64 font"); sprintf(inlineuri, "inline:%s", b64font); + free(b64font); + printf("Loaded font from: %s\n", fontpath); return inlineuri;