Eric Pouech : dbghelp: Correct type of exported function addresses in PE module.

Alexandre Julliard julliard at winehq.org
Thu Oct 28 16:07:45 CDT 2021


Module: wine
Branch: master
Commit: fd5c709c6b17fb4660c63a4e80742fd244d0e801
URL:    https://source.winehq.org/git/wine.git/?a=commit;h=fd5c709c6b17fb4660c63a4e80742fd244d0e801

Author: Eric Pouech <eric.pouech at gmail.com>
Date:   Thu Oct 28 16:46:10 2021 +0200

dbghelp: Correct type of exported function addresses in PE module.

Signed-off-by: Eric Pouech <eric.pouech at gmail.com>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 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-cvs mailing list