winedbg: When filling an imagehlp frame information, also do the stack field, it's used on x86-64 platforms.
This commit is contained in:
parent
d29c6ead92
commit
ecbf297fbb
|
@ -84,6 +84,7 @@ static BOOL stack_get_frame(int nf, IMAGEHLP_STACK_FRAME* ihsf)
|
||||||
memset(ihsf, 0, sizeof(*ihsf));
|
memset(ihsf, 0, sizeof(*ihsf));
|
||||||
ihsf->InstructionOffset = dbg_curr_thread->frames[nf].linear_pc;
|
ihsf->InstructionOffset = dbg_curr_thread->frames[nf].linear_pc;
|
||||||
ihsf->FrameOffset = dbg_curr_thread->frames[nf].linear_frame;
|
ihsf->FrameOffset = dbg_curr_thread->frames[nf].linear_frame;
|
||||||
|
ihsf->StackOffset = dbg_curr_thread->frames[nf].linear_stack;
|
||||||
return TRUE;
|
return TRUE;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue