Eric Pouech : dbghelp: Fixed the types we want to load at first.

Alexandre Julliard julliard at winehq.org
Tue Feb 5 06:33:29 CST 2008


Module: wine
Branch: master
Commit: 8b7039d8948b419e3f5010c9b737bee460839207
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=8b7039d8948b419e3f5010c9b737bee460839207

Author: Eric Pouech <eric.pouech at orange.fr>
Date:   Sun Jan 27 19:04:26 2008 +0100

dbghelp: Fixed the types we want to load at first.

---

 dlls/dbghelp/msc.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/dlls/dbghelp/msc.c b/dlls/dbghelp/msc.c
index 5e6f8a8..66a2570 100644
--- a/dlls/dbghelp/msc.c
+++ b/dlls/dbghelp/msc.c
@@ -1068,8 +1068,8 @@ static int codeview_parse_type_table(struct codeview_type_parse* ctp)
          *   X  1500-150d       for V3 types
          *      8000-8010       for numeric leafes
          */
-        if (type->generic.id & 0x8600) continue;
-        codeview_parse_one_type(ctp, curr_type, type, TRUE);
+        if (!(type->generic.id & 0x8600) || (type->generic.id & 0x0100))
+            codeview_parse_one_type(ctp, curr_type, type, TRUE);
     }
 
     return TRUE;




More information about the wine-cvs mailing list