[fastfat_new]

- FatCreateCcb takes no parameters, so don't pass any. Spotted by Stefan's msvc.

svn path=/trunk/; revision=43806
This commit is contained in:
Aleksey Bragin 2009-10-28 10:18:57 +00:00
parent 3df137895d
commit 5275a28717
2 changed files with 3 additions and 3 deletions

View file

@ -67,7 +67,7 @@ FatiOpenRootDcb(IN PFAT_IRP_CONTEXT IrpContext,
}
/* Set file object pointers */
Ccb = FatCreateCcb(IrpContext);
Ccb = FatCreateCcb();
FatSetFileObject(FileObject, UserDirectoryOpen, Dcb, Ccb);
/* Increment counters */
@ -336,7 +336,7 @@ FatiOpenVolume(IN PFAT_IRP_CONTEXT IrpContext,
}
/* Set file object pointers */
Ccb = FatCreateCcb(IrpContext);
Ccb = FatCreateCcb();
FatSetFileObject(FileObject, UserVolumeOpen, Vcb, Ccb);
FileObject->SectionObjectPointer = &Vcb->SectionObjectPointers;

View file

@ -367,7 +367,7 @@ FatiOpenExistingFcb(IN PFAT_IRP_CONTEXT IrpContext,
}
/* Set up file object */
Ccb = FatCreateCcb(IrpContext);
Ccb = FatCreateCcb();
FatSetFileObject(FileObject,
UserFileOpen,
Fcb,