From: Igor Kulaychuk Date: Tue, 24 Apr 2018 17:49:12 +0000 (+0300) Subject: Fix ids of fake exception breakpoints X-Git-Tag: submit/tizen/20180620.071641~9^2~2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=22416fd8952cf6db11b4b0b9fc837ec5dfb38b4b;p=sdk%2Ftools%2Fnetcoredbg.git Fix ids of fake exception breakpoints --- diff --git a/src/debug/netcoredbg/breakpoints.cpp b/src/debug/netcoredbg/breakpoints.cpp index 46ba50f..fe0c2e0 100644 --- a/src/debug/netcoredbg/breakpoints.cpp +++ b/src/debug/netcoredbg/breakpoints.cpp @@ -148,7 +148,7 @@ void ManagedDebugger::InsertExceptionBreakpoint(const std::string &name, Breakpo void Breakpoints::InsertExceptionBreakpoint(const std::string &name, Breakpoint &breakpoint) { std::lock_guard lock(m_breakpointsMutex); - m_nextBreakpointId++; + breakpoint.id = m_nextBreakpointId++; } void Breakpoints::DeleteAllBreakpoints()