[PATCH 02/11] dbghelp: handle some more error conditions in SymGetTypeInfo()

Eric Pouech eric.pouech at gmail.com
Tue Oct 19 08:51:00 CDT 2021


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

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

diff --git a/dlls/dbghelp/type.c b/dlls/dbghelp/type.c
index eecb83f325f..80f8eca768e 100644
--- a/dlls/dbghelp/type.c
+++ b/dlls/dbghelp/type.c
@@ -746,6 +746,8 @@ BOOL symt_get_info(struct module* module, const struct symt* type,
         case SymTagFunctionType:
         case SymTagFunctionArgType:
         case SymTagLabel:
+        case SymTagFuncDebugStart:
+        case SymTagFuncDebugEnd:
             return FALSE;
         }
         break;
@@ -839,6 +841,7 @@ BOOL symt_get_info(struct module* module, const struct symt* type,
         case SymTagArrayType:
         case SymTagBaseType:
         case SymTagTypedef:
+        case SymTagFunction:
         case SymTagBlock:
         case SymTagFuncDebugStart:
         case SymTagFuncDebugEnd:




More information about the wine-devel mailing list