mirror of
https://github.com/reactos/reactos.git
synced 2024-12-27 09:34:43 +00:00
Uninitialize the file cache only if it was initialized.
svn path=/trunk/; revision=3914
This commit is contained in:
parent
5b2709d12e
commit
5d8ab9ff70
1 changed files with 6 additions and 3 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: cleanup.c,v 1.1 2002/09/09 17:27:14 hbirr Exp $
|
||||
/* $Id: cleanup.c,v 1.2 2003/01/02 16:01:21 hbirr Exp $
|
||||
*
|
||||
* COPYRIGHT: See COPYING in the top level directory
|
||||
* PROJECT: ReactOS kernel
|
||||
|
@ -58,8 +58,11 @@ CdfsCleanupFile(PDEVICE_EXTENSION DeviceExt,
|
|||
return STATUS_SUCCESS;
|
||||
}
|
||||
|
||||
/* Uninitialize the file cache. */
|
||||
CcRosReleaseFileCache (FileObject, Ccb->Fcb->RFCB.Bcb);
|
||||
/* Uninitialize file cache if initialized for this file object. */
|
||||
if (Ccb->Fcb->RFCB.Bcb != NULL)
|
||||
{
|
||||
CcRosReleaseFileCache (FileObject, Ccb->Fcb->RFCB.Bcb);
|
||||
}
|
||||
|
||||
return STATUS_SUCCESS;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue