Module: wine
Branch: refs/heads/master
Commit: 983d8aea3ec335d9676ea2b7ac00f4885227b801
URL: http://source.winehq.org/git/?p=wine.git;a=commit;h=983d8aea3ec335d9676ea2b…
Author: Eric Pouech <eric.pouech(a)wanadoo.fr>
Date: Sat Mar 25 10:12:57 2006 +0100
dbghelp: Module should be case insensitive.
When looking up a symbol name in the form module!name, the module
lookup should be insensitive.
---
dlls/dbghelp/symbol.c | 3 +--
1 files changed, 1 insertions(+), 2 deletions(-)
diff --git a/dlls/dbghelp/symbol.c b/dlls/dbghelp/symbol.c
index 6458a6e..091845d 100644
--- a/dlls/dbghelp/symbol.c
+++ b/dlls/dbghelp/symbol.c
@@ -797,8 +797,7 @@ BOOL WINAPI SymEnumSymbols(HANDLE hProce
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);