Commit 5af51ce0 authored by Piotr Caban's avatar Piotr Caban Committed by Alexandre Julliard

msvcrt: Accept <> characters in string literals in demangler.

parent c24bbd13
......@@ -591,7 +591,8 @@ static char* get_literal_string(struct parsed_symbol* sym)
if (!((*sym->current >= 'A' && *sym->current <= 'Z') ||
(*sym->current >= 'a' && *sym->current <= 'z') ||
(*sym->current >= '0' && *sym->current <= '9') ||
*sym->current == '_' || *sym->current == '$')) {
*sym->current == '_' || *sym->current == '$' ||
*sym->current == '<' || *sym->current == '>')) {
TRACE("Failed at '%c' in %s\n", *sym->current, debugstr_a(ptr));
return NULL;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment