From: Serge Gautherie Date: Fri, 4 May 2018 04:03:41 +0000 (+0200) Subject: [NTFS] Fix 2 Clang-Cl warnings about CurrentKey->IndexEntry->Flags X-Git-Tag: 0.4.9-RC~80 X-Git-Url: https://git.reactos.org/?p=reactos.git;a=commitdiff_plain;h=b893124a20b8024a26d794a4d1867845ca3493e4 [NTFS] Fix 2 Clang-Cl warnings about CurrentKey->IndexEntry->Flags "warning: logical not is only applied to the left hand side of this bitwise operator [-Wlogical-not-parentheses]" CORE-14306 --- diff --git a/drivers/filesystems/ntfs/btree.c b/drivers/filesystems/ntfs/btree.c index 35a6eb6cd05..a702e25b335 100644 --- a/drivers/filesystems/ntfs/btree.c +++ b/drivers/filesystems/ntfs/btree.c @@ -1257,7 +1257,7 @@ UpdateIndexAllocation(PDEVICE_EXTENSION DeviceExt, } // Is the Index Entry large enough to store the VCN? - if (!CurrentKey->IndexEntry->Flags & NTFS_INDEX_ENTRY_NODE) + if (!BooleanFlagOn(CurrentKey->IndexEntry->Flags, NTFS_INDEX_ENTRY_NODE)) { // Allocate memory for the larger index entry PINDEX_ENTRY_ATTRIBUTE NewEntry = ExAllocatePoolWithTag(NonPagedPool, @@ -1357,7 +1357,7 @@ UpdateIndexNode(PDEVICE_EXTENSION DeviceExt, } // Is the Index Entry large enough to store the VCN? - if (!CurrentKey->IndexEntry->Flags & NTFS_INDEX_ENTRY_NODE) + if (!BooleanFlagOn(CurrentKey->IndexEntry->Flags, NTFS_INDEX_ENTRY_NODE)) { // Allocate memory for the larger index entry PINDEX_ENTRY_ATTRIBUTE NewEntry = ExAllocatePoolWithTag(NonPagedPool,