[PATCH 12/19] dbghelp: return SymTagExe when requesting lexical parent of types in SymGetTypeInfo()

Eric Pouech eric.pouech at gmail.com
Wed Oct 6 03:01:48 CDT 2021


Signed-off-by: Eric Pouech <eric.pouech at gmail.com>

---
 dlls/dbghelp/type.c |    6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/dlls/dbghelp/type.c b/dlls/dbghelp/type.c
index 320af023135..b45e79e9946 100644
--- a/dlls/dbghelp/type.c
+++ b/dlls/dbghelp/type.c
@@ -763,7 +763,13 @@ BOOL symt_get_info(struct module* module, const struct symt* type,
             break;
         case SymTagUDT:
         case SymTagEnum:
+        case SymTagFunctionType:
         case SymTagFunctionArgType:
+        case SymTagPointerType:
+        case SymTagArrayType:
+        case SymTagBaseType:
+        case SymTagTypedef:
+        case SymTagBaseClass:
             X(DWORD) = symt_ptr2index(module, &module->top->symt);
             break;
         default:




More information about the wine-devel mailing list