https://git.reactos.org/?p=reactos.git;a=commitdiff;h=01fcb02880039bb94cdbc6d3e4501b4185e29e09

commit 01fcb02880039bb94cdbc6d3e4501b4185e29e09
Author:     Pierre Schweitzer <[email protected]>
AuthorDate: Sat Feb 17 15:06:29 2018 +0100
Commit:     Pierre Schweitzer <[email protected]>
CommitDate: Sat Feb 17 15:06:29 2018 +0100

    [NTOSKRNL] Allow more chars in ExpTagAllowPrint().
    Dedicated to Mark
---
 ntoskrnl/mm/ARM3/expool.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/ntoskrnl/mm/ARM3/expool.c b/ntoskrnl/mm/ARM3/expool.c
index d13142a4a7..54c6990be5 100644
--- a/ntoskrnl/mm/ARM3/expool.c
+++ b/ntoskrnl/mm/ARM3/expool.c
@@ -468,7 +468,8 @@ ExpTagAllowPrint(CHAR Tag)
     if ((Tag >= 'a' && Tag <= 'z') ||
         (Tag >= 'A' && Tag <= 'Z') ||
         (Tag >= '0' && Tag <= '9') ||
-        Tag == ' ')
+        Tag == ' ' || Tag == '=' ||
+        Tag == '?' || Tag == '@')
     {
         return TRUE;
     }

Reply via email to