Fix a really stupid mistake in RtlNumberOfSetBits

svn path=/trunk/; revision=56797
This commit is contained in:
Timo Kreuzer 2012-06-24 17:50:46 +00:00
parent edc7d34422
commit 32d6beb209

View file

@ -415,7 +415,7 @@ RtlNumberOfSetBits(
Byte = (PUCHAR)BitMapHeader->Buffer;
MaxByte = Byte + BitMapHeader->SizeOfBitMap / 8;
while (Byte < MaxByte);
while (Byte < MaxByte)
{
BitCount += BitCountTable[*Byte++];
}