Author: pschweitzer
Date: Mon Dec 3 22:17:51 2012
New Revision: 57793
URL:
http://svn.reactos.org/svn/reactos?rev=57793&view=rev
Log:
[FASTFAT]
ExFreePool -> ExFreePoolWithTag
Modified:
trunk/reactos/drivers/filesystems/fastfat/fcb.c
Modified: trunk/reactos/drivers/filesystems/fastfat/fcb.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/drivers/filesystems/fastfa…
==============================================================================
--- trunk/reactos/drivers/filesystems/fastfat/fcb.c [iso-8859-1] (original)
+++ trunk/reactos/drivers/filesystems/fastfat/fcb.c [iso-8859-1] Mon Dec 3 22:17:51 2012
@@ -147,7 +147,7 @@
{
if (pCcb->SearchPattern.Buffer)
{
- ExFreePool(pCcb->SearchPattern.Buffer);
+ ExFreePoolWithTag(pCcb->SearchPattern.Buffer, TAG_VFAT);
}
ExFreeToNPagedLookasideList(&VfatGlobalData->CcbLookasideList, pCcb);
}