mirror of
https://github.com/reactos/reactos.git
synced 2025-07-31 10:01:43 +00:00
[USETUP][ROSAPPS][EXT2LIB] NtReadFile() calls: Remove unused 'ByteOffset = 0', Use explicit NULL instead of ambiguous 0, Remove casts to same type. CORE-13910
This commit is contained in:
parent
ba9a1c3abb
commit
bcaa33e33b
4 changed files with 7 additions and 8 deletions
|
@ -982,7 +982,7 @@ Ext2ReadDisk( PEXT2_FILESYS Ext2Sys,
|
|||
Address.QuadPart = Offset;
|
||||
|
||||
Status = NtReadFile( Ext2Sys->MediaHandle,
|
||||
0,
|
||||
NULL,
|
||||
NULL,
|
||||
NULL,
|
||||
&IoStatus,
|
||||
|
@ -1009,7 +1009,7 @@ Ext2ReadDisk( PEXT2_FILESYS Ext2Sys,
|
|||
}
|
||||
|
||||
Status = NtReadFile( Ext2Sys->MediaHandle,
|
||||
0,
|
||||
NULL,
|
||||
NULL,
|
||||
NULL,
|
||||
&IoStatus,
|
||||
|
@ -1106,7 +1106,7 @@ Ext2WriteDisk( PEXT2_FILESYS Ext2Sys,
|
|||
if ((AlignedLength != Length) || (Address.QuadPart != (LONGLONG)Offset))
|
||||
{
|
||||
Status = NtReadFile( Ext2Sys->MediaHandle,
|
||||
0,
|
||||
NULL,
|
||||
NULL,
|
||||
NULL,
|
||||
&IoStatus,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue