mirror of
https://github.com/reactos/reactos.git
synced 2024-12-26 12:33:31 +08:00
[NTOSKRNL] Print tags which contains numerics in the memory dumper.
This fixes i8042prt.sys allocations not properly being rendered.
This commit is contained in:
parent
4663d02cd7
commit
7fecde4a20
@ -467,6 +467,7 @@ ExpTagAllowPrint(CHAR Tag)
|
||||
{
|
||||
if ((Tag >= 'a' && Tag <= 'z') ||
|
||||
(Tag >= 'A' && Tag <= 'Z') ||
|
||||
(Tag >= '0' && Tag <= '9') ||
|
||||
Tag == ' ')
|
||||
{
|
||||
return TRUE;
|
||||
|
Loading…
Reference in New Issue
Block a user