Skip to content
Snippets Groups Projects
Commit 2a049574 authored by eric pouech's avatar eric pouech Committed by Alexandre Julliard
Browse files

dbghelp: Let StackWalkEx() succeed even when inline mode is requested.


Fallback to regular StackWalk64() behavior.

Signed-off-by: default avatarEric Pouech <eric.pouech@gmail.com>
Signed-off-by: Alexandre Julliard's avatarAlexandre Julliard <julliard@winehq.org>
parent 17f62528
No related branches found
No related tags found
No related merge requests found
......@@ -298,9 +298,13 @@ BOOL WINAPI StackWalkEx(DWORD MachineType, HANDLE hProcess, HANDLE hThread,
}
if (frame->InlineFrameContext != INLINE_FRAME_CONTEXT_IGNORE)
{
FIXME("Inlined contexts are not supported yet\n");
SetLastError(ERROR_INVALID_PARAMETER);
return FALSE;
static BOOL once;
if (!once)
{
FIXME("Inlined contexts are not supported yet\n");
once = TRUE;
}
frame->InlineFrameContext = INLINE_FRAME_CONTEXT_IGNORE;
}
csw.hProcess = hProcess;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment