mirror of
https://github.com/reactos/reactos.git
synced 2025-04-05 05:01:03 +00:00
- 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:
parent
7cae9f8a8e
commit
73c4e223ec
1 changed files with 5 additions and 0 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue