mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 01:55:19 +00:00
[CDFS] Remove the VPB field from the VCB. Not only it was never set, but the only times it was used was broken!
This commit is contained in:
parent
f86e78d00b
commit
fa0327d6c5
2 changed files with 1 additions and 2 deletions
|
@ -161,7 +161,6 @@ typedef struct
|
|||
KSPIN_LOCK FcbListLock;
|
||||
LIST_ENTRY FcbListHead;
|
||||
|
||||
PVPB Vpb;
|
||||
PDEVICE_OBJECT VolumeDevice;
|
||||
PDEVICE_OBJECT StorageDevice;
|
||||
PFILE_OBJECT StreamFileObject;
|
||||
|
|
|
@ -419,7 +419,7 @@ CdfsMountVolume(
|
|||
DeviceExt->StreamFileObject->FsContext2 = Ccb;
|
||||
DeviceExt->StreamFileObject->SectionObjectPointer = &Fcb->SectionObjectPointers;
|
||||
DeviceExt->StreamFileObject->PrivateCacheMap = NULL;
|
||||
DeviceExt->StreamFileObject->Vpb = DeviceExt->Vpb;
|
||||
DeviceExt->StreamFileObject->Vpb = DeviceToMount->Vpb;
|
||||
Ccb->PtrFileObject = DeviceExt->StreamFileObject;
|
||||
Fcb->FileObject = DeviceExt->StreamFileObject;
|
||||
Fcb->DevExt = (PDEVICE_EXTENSION)DeviceExt->StorageDevice;
|
||||
|
|
Loading…
Reference in a new issue