mirror of
https://github.com/reactos/reactos.git
synced 2025-02-24 09:25:10 +00:00
Removed wrong FIXME: CcInitializeCacheMap doesn't raise exceptions.
See issue #3315 for more details. svn path=/trunk/; revision=34998
This commit is contained in:
parent
55f1b15382
commit
00b5f8b803
3 changed files with 0 additions and 4 deletions
|
@ -332,7 +332,6 @@ vfatFCBInitializeCacheFromVolume (PVCB vcb, PVFATFCB fcb)
|
|||
fcb->FileObject = fileObject;
|
||||
fcb->RefCount++;
|
||||
|
||||
/* FIXME: Guard by SEH. */
|
||||
CcInitializeCacheMap(fileObject,
|
||||
(PCC_FILE_SIZES)(&fcb->RFCB.AllocationSize),
|
||||
FALSE,
|
||||
|
|
|
@ -537,7 +537,6 @@ VfatMount (PVFAT_IRP_CONTEXT IrpContext)
|
|||
Fcb->RFCB.ValidDataLength = Fcb->RFCB.FileSize;
|
||||
Fcb->RFCB.AllocationSize = Fcb->RFCB.FileSize;
|
||||
|
||||
/* FIXME: Guard by SEH. */
|
||||
CcInitializeCacheMap(DeviceExt->FATFileObject,
|
||||
(PCC_FILE_SIZES)(&Fcb->RFCB.AllocationSize),
|
||||
FALSE,
|
||||
|
|
|
@ -671,7 +671,6 @@ VfatRead(PVFAT_IRP_CONTEXT IrpContext)
|
|||
CHECKPOINT;
|
||||
if (IrpContext->FileObject->PrivateCacheMap == NULL)
|
||||
{
|
||||
/* FIXME: Guard by SEH. */
|
||||
CcInitializeCacheMap(IrpContext->FileObject,
|
||||
(PCC_FILE_SIZES)(&Fcb->RFCB.AllocationSize),
|
||||
FALSE,
|
||||
|
@ -965,7 +964,6 @@ NTSTATUS VfatWrite (PVFAT_IRP_CONTEXT IrpContext)
|
|||
|
||||
if (IrpContext->FileObject->PrivateCacheMap == NULL)
|
||||
{
|
||||
/* FIXME: Guard by SEH. */
|
||||
CcInitializeCacheMap(IrpContext->FileObject,
|
||||
(PCC_FILE_SIZES)(&Fcb->RFCB.AllocationSize),
|
||||
FALSE,
|
||||
|
|
Loading…
Reference in a new issue