[fastfat_new]
[reactos.git] / reactos / drivers / filesystems / fastfat_new / create.c
index 4959048..804faa3 100644 (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;