From 0f77d8f3802eae04367797e1a3d21fa0beb8a288 Mon Sep 17 00:00:00 2001 From: "Adam D. Ruppe" Date: Mon, 15 Oct 2018 20:17:26 -0400 Subject: [PATCH] fix memory leak --- ttf.d | 1 + 1 file changed, 1 insertion(+) diff --git a/ttf.d b/ttf.d index ff13d45..e983f22 100644 --- a/ttf.d +++ b/ttf.d @@ -92,6 +92,7 @@ struct TtfFont { stbtt_GetCodepointHMetrics(&font, ch, &advance, &lsb); int cw, cheight; auto c = renderCharacter(ch, size, cw, cheight, x_shift, 0.0); + scope(exit) stbtt_FreeBitmap(c.ptr, null); int x0, y0, x1, y1; stbtt_GetCodepointBitmapBoxSubpixel(&font, ch, scale,scale,x_shift,0, &x0,&y0,&x1,&y1);