[NTOSKRNL]

- do not compare (x & y) with TRUE

svn path=/trunk/; revision=54438
This commit is contained in:
Jérôme Gardou 2011-11-19 15:45:20 +00:00
parent 83d38617e6
commit bc4029e9c3

View file

@ -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;
}