We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 06cf769 commit b3aa34cCopy full SHA for b3aa34c
1 file changed
NtApiDotNet/Ndr/NdrUnionTypes.cs
@@ -53,7 +53,7 @@ internal NdrUnionArm(NdrParseContext context, BinaryReader reader)
53
internal static NdrBaseTypeReference ReadArmType(NdrParseContext context, BinaryReader reader)
54
{
55
ushort type = reader.ReadUInt16();
56
- if ((type & 0x8F00) == 0x8000)
+ if ((type & 0xFF00) == 0x8000)
57
58
return new NdrSimpleTypeReference((NdrFormatCharacter)(type & 0xFF));
59
}
0 commit comments