mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 18:15:11 +00:00
[NTFS]
Remove unused parameter from SetAttributeDataLength. svn path=/branches/GSoC_2016/NTFS/; revision=71677
This commit is contained in:
parent
a7a2c0d734
commit
f47efca89f
3 changed files with 1 additions and 3 deletions
|
@ -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))
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue