[NTOSKRNL] Print tags which contains numerics in the memory dumper.

This fixes i8042prt.sys allocations not properly being rendered.
This commit is contained in:
Pierre Schweitzer 2017-12-29 20:36:35 +01:00
parent 4663d02cd7
commit 7fecde4a20
No known key found for this signature in database
GPG Key ID: 7545556C3D585B0B

View File

@ -467,6 +467,7 @@ ExpTagAllowPrint(CHAR Tag)
{
if ((Tag >= 'a' && Tag <= 'z') ||
(Tag >= 'A' && Tag <= 'Z') ||
(Tag >= '0' && Tag <= '9') ||
Tag == ' ')
{
return TRUE;