fix for issue #16289 (#16291)
authorDavid Mason <davmason@microsoft.com>
Fri, 9 Feb 2018 08:30:02 +0000 (00:30 -0800)
committerGitHub <noreply@github.com>
Fri, 9 Feb 2018 08:30:02 +0000 (00:30 -0800)
src/debug/di/breakpoint.cpp

index cc55060..d8e8a3f 100644 (file)
@@ -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)
         {