Eric Pouech : dbghelp: Fix local/parameters enumeration on 64bit platforms.

Alexandre Julliard julliard at winehq.org
Mon Mar 22 11:12:01 CDT 2010


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

Author: Eric Pouech <eric.pouech at orange.fr>
Date:   Sat Mar 20 09:48:07 2010 +0100

dbghelp: Fix local/parameters enumeration on 64bit platforms.

---

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

diff --git a/dlls/dbghelp/symbol.c b/dlls/dbghelp/symbol.c
index fa9459e..e53b583 100644
--- a/dlls/dbghelp/symbol.c
+++ b/dlls/dbghelp/symbol.c
@@ -1016,7 +1016,7 @@ static BOOL symt_enum_locals(struct process* pcs, const char* mask,
 {
     struct module_pair  pair;
     struct symt_ht*     sym;
-    DWORD               pc = pcs->ctx_frame.InstructionOffset;
+    DWORD_PTR           pc = pcs->ctx_frame.InstructionOffset;
 
     se->sym_info->SizeOfStruct = sizeof(*se->sym_info);
     se->sym_info->MaxNameLen = sizeof(se->buffer) - sizeof(SYMBOL_INFO);




More information about the wine-cvs mailing list