summaryrefslogtreecommitdiff
path: root/src/debug
diff options
context:
space:
mode:
authorDavid Mason <davmason@microsoft.com>2018-02-09 00:30:02 -0800
committerGitHub <noreply@github.com>2018-02-09 00:30:02 -0800
commitcd3f6e77757729d3d02dfbec4af21cdfe83f5435 (patch)
treebe864fc835a0bb321f9983331a3da3982a28c224 /src/debug
parent71aafbff34ba2d9b58dfc5e580dca7a0a6f7d92b (diff)
downloadcoreclr-cd3f6e77757729d3d02dfbec4af21cdfe83f5435.tar.gz
coreclr-cd3f6e77757729d3d02dfbec4af21cdfe83f5435.tar.bz2
coreclr-cd3f6e77757729d3d02dfbec4af21cdfe83f5435.zip
fix for issue #16289 (#16291)
Diffstat (limited to 'src/debug')
-rw-r--r--src/debug/di/breakpoint.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/debug/di/breakpoint.cpp b/src/debug/di/breakpoint.cpp
index cc55060fa8..d8e8a3fb93 100644
--- a/src/debug/di/breakpoint.cpp
+++ b/src/debug/di/breakpoint.cpp
@@ -207,7 +207,7 @@ HRESULT CordbFunctionBreakpoint::Activate(BOOL fActivate)
BOOL codeIsIL = m_code->IsIL();
- pEvent->BreakpointData.isIL = m_offsetIsIl;
+ pEvent->BreakpointData.isIL = m_offsetIsIl ? true : false;
pEvent->BreakpointData.offset = m_offset;
if (codeIsIL)
{