[PATCH] [DbgHelp]: module should be case insensitive

Eric Pouech eric.pouech at wanadoo.fr
Sat Mar 25 03:12:57 CST 2006


- when looking up a symbol name in the form module!name, 
  the module lookup should be insensitive

A+
---

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





More information about the wine-patches mailing list