From b43abc686f3cd06786b07661b5bf80596541a832 Mon Sep 17 00:00:00 2001 From: Igor Kulaychuk Date: Mon, 22 Jan 2018 19:08:27 +0300 Subject: [PATCH] Fix frame id --- src/debug/netcoredbg/frames.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/debug/netcoredbg/frames.cpp b/src/debug/netcoredbg/frames.cpp index e83866e..6c0efcf 100644 --- a/src/debug/netcoredbg/frames.cpp +++ b/src/debug/netcoredbg/frames.cpp @@ -59,7 +59,7 @@ HRESULT ManagedDebugger::GetFrameLocation(ICorDebugFrame *pFrame, int threadId, { HRESULT Status; - stackFrame.id = FrameAddr(pFrame); + stackFrame = StackFrame(threadId, level, ""); ULONG32 ilOffset; Modules::SequencePoint sp; -- 2.7.4