mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 01:55:19 +00:00
[NTOSKRNL]
- do not compare (x & y) with TRUE svn path=/trunk/; revision=54438
This commit is contained in:
parent
83d38617e6
commit
bc4029e9c3
1 changed files with 1 additions and 1 deletions
|
@ -308,7 +308,7 @@ FsRtlCopyWrite(IN PFILE_OBJECT FileObject,
|
|||
*/
|
||||
if ((CcCanIWrite(FileObject, Length, Wait, FALSE) == FALSE) ||
|
||||
(CcCopyWriteWontFlush(FileObject, FileOffset, Length) == FALSE) ||
|
||||
((FileObject->Flags & FO_WRITE_THROUGH) == TRUE))
|
||||
((FileObject->Flags & FO_WRITE_THROUGH)))
|
||||
{
|
||||
return FALSE;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue