mirror of
https://github.com/reactos/reactos.git
synced 2025-07-27 07:41:51 +00:00
[FASTFAT]
Remove unused vars ~ svn path=/trunk/; revision=50173
This commit is contained in:
parent
52891961b6
commit
9670bc63c4
1 changed files with 0 additions and 4 deletions
|
@ -123,7 +123,6 @@ VfatReadFileData (PVFAT_IRP_CONTEXT IrpContext,
|
||||||
PDEVICE_EXTENSION DeviceExt;
|
PDEVICE_EXTENSION DeviceExt;
|
||||||
BOOLEAN First = TRUE;
|
BOOLEAN First = TRUE;
|
||||||
PVFATFCB Fcb;
|
PVFATFCB Fcb;
|
||||||
PVFATCCB Ccb;
|
|
||||||
NTSTATUS Status;
|
NTSTATUS Status;
|
||||||
ULONG BytesDone;
|
ULONG BytesDone;
|
||||||
ULONG BytesPerSector;
|
ULONG BytesPerSector;
|
||||||
|
@ -145,7 +144,6 @@ VfatReadFileData (PVFAT_IRP_CONTEXT IrpContext,
|
||||||
|
|
||||||
*LengthRead = 0;
|
*LengthRead = 0;
|
||||||
|
|
||||||
Ccb = (PVFATCCB)IrpContext->FileObject->FsContext2;
|
|
||||||
Fcb = IrpContext->FileObject->FsContext;
|
Fcb = IrpContext->FileObject->FsContext;
|
||||||
BytesPerSector = DeviceExt->FatInfo.BytesPerSector;
|
BytesPerSector = DeviceExt->FatInfo.BytesPerSector;
|
||||||
BytesPerCluster = DeviceExt->FatInfo.BytesPerCluster;
|
BytesPerCluster = DeviceExt->FatInfo.BytesPerCluster;
|
||||||
|
@ -328,7 +326,6 @@ VfatWriteFileData(PVFAT_IRP_CONTEXT IrpContext,
|
||||||
{
|
{
|
||||||
PDEVICE_EXTENSION DeviceExt;
|
PDEVICE_EXTENSION DeviceExt;
|
||||||
PVFATFCB Fcb;
|
PVFATFCB Fcb;
|
||||||
PVFATCCB Ccb;
|
|
||||||
ULONG Count;
|
ULONG Count;
|
||||||
ULONG FirstCluster;
|
ULONG FirstCluster;
|
||||||
ULONG CurrentCluster;
|
ULONG CurrentCluster;
|
||||||
|
@ -352,7 +349,6 @@ VfatWriteFileData(PVFAT_IRP_CONTEXT IrpContext,
|
||||||
ASSERT(IrpContext->FileObject);
|
ASSERT(IrpContext->FileObject);
|
||||||
ASSERT(IrpContext->FileObject->FsContext2 != NULL);
|
ASSERT(IrpContext->FileObject->FsContext2 != NULL);
|
||||||
|
|
||||||
Ccb = (PVFATCCB)IrpContext->FileObject->FsContext2;
|
|
||||||
Fcb = IrpContext->FileObject->FsContext;
|
Fcb = IrpContext->FileObject->FsContext;
|
||||||
BytesPerCluster = DeviceExt->FatInfo.BytesPerCluster;
|
BytesPerCluster = DeviceExt->FatInfo.BytesPerCluster;
|
||||||
BytesPerSector = DeviceExt->FatInfo.BytesPerSector;
|
BytesPerSector = DeviceExt->FatInfo.BytesPerSector;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue