- Fix incorrect NtSetDebugFilter behavior (Level below 32 should be converted into a mask). Now DbgPrintEx works as expected.

svn path=/trunk/; revision=31428
This commit is contained in:
Aleksey Bragin 2007-12-25 10:45:14 +00:00
parent 7cae9f8a8e
commit 73c4e223ec

View file

@ -337,6 +337,11 @@ NtSetDebugFilterState(IN ULONG ComponentId,
KdComponentTable[i].ComponentId = ComponentId;
KdComponentTable[i].Level = 0;
}
/* Convert level to mask, if needed */
if (Level < 32)
Level = 1 << Level;
if ( State )
KdComponentTable[i].Level |= Level;
else