From ecbf297fbb8c7c3b88e448c1318ea519bd760cae Mon Sep 17 00:00:00 2001 From: Eric Pouech Date: Tue, 30 Mar 2010 21:37:08 +0200 Subject: [PATCH] winedbg: When filling an imagehlp frame information, also do the stack field, it's used on x86-64 platforms. --- programs/winedbg/stack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/programs/winedbg/stack.c b/programs/winedbg/stack.c index f5769a854f..4b2286c909 100644 --- a/programs/winedbg/stack.c +++ b/programs/winedbg/stack.c @@ -84,6 +84,7 @@ static BOOL stack_get_frame(int nf, IMAGEHLP_STACK_FRAME* ihsf) memset(ihsf, 0, sizeof(*ihsf)); ihsf->InstructionOffset = dbg_curr_thread->frames[nf].linear_pc; ihsf->FrameOffset = dbg_curr_thread->frames[nf].linear_frame; + ihsf->StackOffset = dbg_curr_thread->frames[nf].linear_stack; return TRUE; } -- 2.32.0.93.g670b81a890