diff --git a/programs/winedbg/stack.c b/programs/winedbg/stack.c index f5769a854f7..4b2286c9095 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; }