https://git.reactos.org/?p=reactos.git;a=commitdiff;h=7fecde4a20b6a73e1702df...
commit 7fecde4a20b6a73e1702dfbc8c2a012060185d6b Author: Pierre Schweitzer pierre@reactos.org AuthorDate: Fri Dec 29 20:36:35 2017 +0100
[NTOSKRNL] Print tags which contains numerics in the memory dumper. This fixes i8042prt.sys allocations not properly being rendered. --- ntoskrnl/mm/ARM3/expool.c | 1 + 1 file changed, 1 insertion(+)
diff --git a/ntoskrnl/mm/ARM3/expool.c b/ntoskrnl/mm/ARM3/expool.c index 89103807a6..d13142a4a7 100644 --- a/ntoskrnl/mm/ARM3/expool.c +++ b/ntoskrnl/mm/ARM3/expool.c @@ -467,6 +467,7 @@ ExpTagAllowPrint(CHAR Tag) { if ((Tag >= 'a' && Tag <= 'z') || (Tag >= 'A' && Tag <= 'Z') || + (Tag >= '0' && Tag <= '9') || Tag == ' ') { return TRUE;