Author: pschweitzer Date: Fri May 1 17:41:38 2015 New Revision: 67499
URL: http://svn.reactos.org/svn/reactos?rev=67499&view=rev Log: [CDFS] Set SizeOfFastIoDispatch member
Modified: trunk/reactos/drivers/filesystems/cdfs/cdfs.c
Modified: trunk/reactos/drivers/filesystems/cdfs/cdfs.c URL: http://svn.reactos.org/svn/reactos/trunk/reactos/drivers/filesystems/cdfs/cd... ============================================================================== --- trunk/reactos/drivers/filesystems/cdfs/cdfs.c [iso-8859-1] (original) +++ trunk/reactos/drivers/filesystems/cdfs/cdfs.c [iso-8859-1] Fri May 1 17:41:38 2015 @@ -99,6 +99,7 @@ DriverObject->MajorFunction[IRP_MJ_DEVICE_CONTROL] = CdfsDeviceControl;
+ CdfsGlobalData->FastIoDispatch.SizeOfFastIoDispatch = sizeof(FAST_IO_DISPATCH); CdfsGlobalData->FastIoDispatch.FastIoRead = CdfsFastIoRead; CdfsGlobalData->FastIoDispatch.FastIoWrite = CdfsFastIoWrite; DriverObject->FastIoDispatch = &CdfsGlobalData->FastIoDispatch;