mirror of
https://github.com/reactos/reactos.git
synced 2025-04-20 04:20:46 +00:00
Free the DirectorySeachPattern.
svn path=/trunk/; revision=3478
This commit is contained in:
parent
af0e0e9ab6
commit
b35e9d39b5
1 changed files with 5 additions and 1 deletions
|
@ -16,7 +16,7 @@
|
|||
* along with this program; if not, write to the Free Software
|
||||
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
*/
|
||||
/* $Id: close.c,v 1.3 2002/05/15 09:39:54 ekohl Exp $
|
||||
/* $Id: close.c,v 1.4 2002/09/09 17:25:39 hbirr Exp $
|
||||
*
|
||||
* COPYRIGHT: See COPYING in the top level directory
|
||||
* PROJECT: ReactOS kernel
|
||||
|
@ -70,6 +70,10 @@ CdfsCloseFile(PDEVICE_EXTENSION DeviceExt,
|
|||
Ccb->Fcb);
|
||||
}
|
||||
|
||||
if (Ccb->DirectorySearchPattern)
|
||||
{
|
||||
ExFreePool(Ccb->DirectorySearchPattern);
|
||||
}
|
||||
ExFreePool(Ccb);
|
||||
|
||||
return(STATUS_SUCCESS);
|
||||
|
|
Loading…
Reference in a new issue