[NTOSKRNL] Print tags which contains numerics in the memory dumper.
authorPierre Schweitzer <pierre@reactos.org>
Fri, 29 Dec 2017 19:36:35 +0000 (20:36 +0100)
committerPierre Schweitzer <pierre@reactos.org>
Fri, 29 Dec 2017 19:37:43 +0000 (20:37 +0100)
This fixes i8042prt.sys allocations not properly being rendered.

ntoskrnl/mm/ARM3/expool.c

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