Eric Pouech : winedbg: For stack info command, display information in 'a' format (instead of 'x') to get word size machine (instead of forcing 32bit ).

Alexandre Julliard julliard at winehq.org
Tue Apr 20 11:32:21 CDT 2010


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

Author: Eric Pouech <eric.pouech at orange.fr>
Date:   Mon Apr 19 22:33:26 2010 +0200

winedbg: For stack info command, display information in 'a' format (instead of 'x') to get word size machine (instead of forcing 32bit).

---

 programs/winedbg/stack.c |    4 +++-
 1 files changed, 3 insertions(+), 1 deletions(-)

diff --git a/programs/winedbg/stack.c b/programs/winedbg/stack.c
index 7ba2773..bccb56a 100644
--- a/programs/winedbg/stack.c
+++ b/programs/winedbg/stack.c
@@ -50,7 +50,9 @@ void stack_info(void)
     dbg_printf("Stack dump:\n");
     switch (lvalue.addr.Mode)
     {
-    case AddrModeFlat: /* 32-bit mode */
+    case AddrModeFlat: /* 32-bit or 64-bit mode */
+        memory_examine(&lvalue, 24, 'a');
+        break;
     case AddrMode1632: /* 32-bit mode */
         memory_examine(&lvalue, 24, 'x');
         break;




More information about the wine-cvs mailing list