Initialize member variable (#7737)
authorDmitry-Me <Dmitry-Me@users.noreply.github.com>
Fri, 21 Oct 2016 23:38:45 +0000 (02:38 +0300)
committerJan Kotas <jkotas@microsoft.com>
Fri, 21 Oct 2016 23:38:45 +0000 (16:38 -0700)
src/debug/di/breakpoint.cpp

index 1e381a5..e3e4fb0 100644 (file)
@@ -15,7 +15,7 @@
 
 CordbBreakpoint::CordbBreakpoint(CordbProcess * pProcess, CordbBreakpointType bpType)
   : CordbBase(pProcess, 0, enumCordbBreakpoint), 
-  m_active(false), m_type(bpType)
+  m_active(false), m_pAppDomain(NULL), m_type(bpType)
 {
 }