From: Pierre Schweitzer Date: Fri, 29 Dec 2017 19:36:35 +0000 (+0100) Subject: [NTOSKRNL] Print tags which contains numerics in the memory dumper. X-Git-Tag: 0.4.9-dev~519 X-Git-Url: https://git.reactos.org/?p=reactos.git;a=commitdiff_plain;h=7fecde4a20b6a73e1702dfbc8c2a012060185d6b [NTOSKRNL] Print tags which contains numerics in the memory dumper. This fixes i8042prt.sys allocations not properly being rendered. --- diff --git a/ntoskrnl/mm/ARM3/expool.c b/ntoskrnl/mm/ARM3/expool.c index 89103807a63..d13142a4a77 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;