https://git.reactos.org/?p=reactos.git;a=commitdiff;h=801b71b9bfbcb23daf59da30f2e399193bd6ce28

commit 801b71b9bfbcb23daf59da30f2e399193bd6ce28
Author:     Katayama Hirofumi MZ <[email protected]>
AuthorDate: Sun Oct 14 16:47:52 2018 +0900
Commit:     Thomas Faber <[email protected]>
CommitDate: Sun Oct 14 09:47:52 2018 +0200

    [FONT][WIN32SS] Use ExFreePoolWithTag instead of ExFreePool (#941)
---
 win32ss/gdi/ntgdi/freetype.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/win32ss/gdi/ntgdi/freetype.c b/win32ss/gdi/ntgdi/freetype.c
index 7bacfb66ec..10fb8655d7 100644
--- a/win32ss/gdi/ntgdi/freetype.c
+++ b/win32ss/gdi/ntgdi/freetype.c
@@ -5150,7 +5150,7 @@ IntGdiGetFontResourceInfo(
 
     /* Free the buffers */
     ExFreePoolWithTag(NameInfo1, TAG_FINF);
-    ExFreePool(NameInfo2);
+    ExFreePoolWithTag(NameInfo2, TAG_FINF);
 
     if (Count == 0 && dwType != 5)
     {

Reply via email to