dbghelp: Module should be case insensitive.

When looking up a symbol name in the form module!name, the module
lookup should be insensitive.
oldstable
Eric Pouech 2006-03-25 10:12:57 +01:00 committed by Alexandre Julliard
parent b4b295c2a5
commit 983d8aea3e
1 changed files with 1 additions and 2 deletions

View File

@ -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);