[PATCH] dbghelp: correct type of exported function addresses in PE module

Eric Pouech eric.pouech at gmail.com
Thu Oct 28 09:46:10 CDT 2021


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

---
 dlls/dbghelp/pe_module.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dlls/dbghelp/pe_module.c b/dlls/dbghelp/pe_module.c
index 278f3c71c98..35db3edf40f 100644
--- a/dlls/dbghelp/pe_module.c
+++ b/dlls/dbghelp/pe_module.c
@@ -688,7 +688,7 @@ static BOOL pe_load_export_debug_info(const struct process* pcs, struct module*
                                                 IMAGE_DIRECTORY_ENTRY_EXPORT, &size)))
     {
         const WORD*             ordinals = NULL;
-        const DWORD_PTR*	functions = NULL;
+        const DWORD*	        functions = NULL;
         const DWORD*		names = NULL;
         unsigned int		j;
         char			buffer[16];




More information about the wine-devel mailing list