mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-09-03 04:13:31 +00:00
[RTL]
Fix a really stupid mistake in RtlNumberOfSetBits svn path=/trunk/; revision=56797
This commit is contained in:
@@ -415,7 +415,7 @@ RtlNumberOfSetBits(
|
||||
Byte = (PUCHAR)BitMapHeader->Buffer;
|
||||
MaxByte = Byte + BitMapHeader->SizeOfBitMap / 8;
|
||||
|
||||
while (Byte < MaxByte);
|
||||
while (Byte < MaxByte)
|
||||
{
|
||||
BitCount += BitCountTable[*Byte++];
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user