diff --git a/reactos/drivers/filesystems/fastfat_new/create.c b/reactos/drivers/filesystems/fastfat_new/create.c index 4959048d3f7..804faa30099 100644 --- a/reactos/drivers/filesystems/fastfat_new/create.c +++ b/reactos/drivers/filesystems/fastfat_new/create.c @@ -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; diff --git a/reactos/drivers/filesystems/fastfat_new/fcb.c b/reactos/drivers/filesystems/fastfat_new/fcb.c index 8f7019242bd..65b43cc3a70 100644 --- a/reactos/drivers/filesystems/fastfat_new/fcb.c +++ b/reactos/drivers/filesystems/fastfat_new/fcb.c @@ -367,7 +367,7 @@ FatiOpenExistingFcb(IN PFAT_IRP_CONTEXT IrpContext, } /* Set up file object */ - Ccb = FatCreateCcb(IrpContext); + Ccb = FatCreateCcb(); FatSetFileObject(FileObject, UserFileOpen, Fcb,