mirror of
https://github.com/reactos/reactos.git
synced 2026-06-09 09:23:04 +08:00
[NTFS]
Remove unused parameter from SetAttributeDataLength. svn path=/branches/GSoC_2016/NTFS/; revision=71677
This commit is contained in:
committed by
Thomas Faber
parent
a7a2c0d734
commit
f47efca89f
@@ -177,7 +177,6 @@ SetAttributeDataLength(PFILE_OBJECT FileObject,
|
||||
PNTFS_ATTR_CONTEXT AttrContext,
|
||||
ULONG AttrOffset,
|
||||
PFILE_RECORD_HEADER FileRecord,
|
||||
PDEVICE_EXTENSION DeviceExt,
|
||||
PLARGE_INTEGER DataSize)
|
||||
{
|
||||
if (AttrContext->Record.IsNonResident)
|
||||
|
||||
@@ -772,7 +772,6 @@ SetAttributeDataLength(PFILE_OBJECT FileObject,
|
||||
PNTFS_ATTR_CONTEXT AttrContext,
|
||||
ULONG AttrOffset,
|
||||
PFILE_RECORD_HEADER FileRecord,
|
||||
PDEVICE_EXTENSION DeviceExt,
|
||||
PLARGE_INTEGER DataSize);
|
||||
|
||||
ULONG
|
||||
|
||||
@@ -422,7 +422,7 @@ NTSTATUS NtfsWriteFile(PDEVICE_EXTENSION DeviceExt,
|
||||
AllocationSize = ROUND_UP(DataSize.QuadPart, Fcb->Vcb->NtfsInfo.BytesPerCluster);
|
||||
|
||||
// set the attribute data length
|
||||
Status = SetAttributeDataLength(FileObject, Fcb, DataContext, AttributeOffset, FileRecord, DeviceExt, &DataSize);
|
||||
Status = SetAttributeDataLength(FileObject, Fcb, DataContext, AttributeOffset, FileRecord, &DataSize);
|
||||
|
||||
if (!NT_SUCCESS(Status))
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user