Commit 0518c164 authored by Eric Pouech's avatar Eric Pouech Committed by Alexandre Julliard

Previous fix incorrectly removed all test for strings starting with

'?', this is only valid when undname is called with the 'NO_ARGUMENTS' flags.
parent 3cb62c65
......@@ -979,6 +979,8 @@ static BOOL symbol_demangle(struct parsed_symbol* sym)
goto done;
}
/* MS mangled names always begin with '?' */
if (*sym->current != '?') return FALSE;
str_array_init(&sym->stack);
sym->current++;
......
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