Commit 983d8aea authored by Eric Pouech's avatar Eric Pouech Committed by Alexandre Julliard

dbghelp: Module should be case insensitive.

When looking up a symbol name in the form module!name, the module lookup should be insensitive.
parent b4b295c2
......@@ -797,8 +797,7 @@ BOOL WINAPI SymEnumSymbols(HANDLE hProcess, ULONG64 BaseOfDll, PCSTR Mask,
if (bang == Mask) return FALSE;
compile_regex(Mask, bang - Mask, &mod_regex,
dbghelp_options & SYMOPT_CASE_INSENSITIVE);
compile_regex(Mask, bang - Mask, &mod_regex, TRUE);
compile_regex(bang + 1, -1, &sym_regex,
dbghelp_options & SYMOPT_CASE_INSENSITIVE);
......
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