From 5657d83d0ef024573bd03d2bb4015667c122ea9c Mon Sep 17 00:00:00 2001 From: Mark Jansen Date: Fri, 14 Apr 2017 21:22:18 +0000 Subject: [PATCH] [WIN32SS] Addendum to r74312 and r74309, fix some bad memory leaks. CORE-10876 Thanks Giannis and Thomas :) svn path=/trunk/; revision=74316 --- reactos/win32ss/gdi/ntgdi/freetype.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/reactos/win32ss/gdi/ntgdi/freetype.c b/reactos/win32ss/gdi/ntgdi/freetype.c index f4cfa64934d..7c7f526667f 100644 --- a/reactos/win32ss/gdi/ntgdi/freetype.c +++ b/reactos/win32ss/gdi/ntgdi/freetype.c @@ -2052,7 +2052,7 @@ IntGetFontLocalizedName(PUNICODE_STRING pNameW, FT_Face Face, NTSTATUS Status = STATUS_NOT_FOUND; ANSI_STRING AnsiName; - RtlInitUnicodeString(pNameW, NULL); + RtlFreeUnicodeString(pNameW); Count = FT_Get_Sfnt_Name_Count(Face); for (i = 0; i < Count; ++i) @@ -2202,6 +2202,7 @@ FontFamilyFillInfo(PFONTFAMILYINFO Info, PCWSTR FaceName, PFONTGDI FontGDI) else { UNICODE_STRING NameW; + RtlInitUnicodeString(&NameW, NULL); status = IntGetFontLocalizedName(&NameW, Face, TT_NAME_ID_FONT_FAMILY, gusLanguageID); if (NT_SUCCESS(status)) @@ -2640,6 +2641,7 @@ ftGdiGlyphCacheSet( { DPRINT1("Conversion failed\n"); ExFreePoolWithTag(NewEntry, TAG_FONT); + FT_Bitmap_Done(GlyphSlot->library, &AlignedBitmap); FT_Done_Glyph((FT_Glyph)BitmapGlyph); return NULL; }