mirror of
https://github.com/reactos/reactos.git
synced 2025-01-01 03:54:02 +00:00
[FONT][WIN32SS] Use ExFreePoolWithTag instead of ExFreePool (#941)
This commit is contained in:
parent
3d13a464f7
commit
801b71b9bf
1 changed files with 1 additions and 1 deletions
|
@ -5150,7 +5150,7 @@ IntGdiGetFontResourceInfo(
|
||||||
|
|
||||||
/* Free the buffers */
|
/* Free the buffers */
|
||||||
ExFreePoolWithTag(NameInfo1, TAG_FINF);
|
ExFreePoolWithTag(NameInfo1, TAG_FINF);
|
||||||
ExFreePool(NameInfo2);
|
ExFreePoolWithTag(NameInfo2, TAG_FINF);
|
||||||
|
|
||||||
if (Count == 0 && dwType != 5)
|
if (Count == 0 && dwType != 5)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue