From d4f30f490156cbda66fb363f2e8bef01650714d8 Mon Sep 17 00:00:00 2001 From: Dmitry-Me Date: Sat, 22 Oct 2016 02:38:45 +0300 Subject: [PATCH] Initialize member variable (dotnet/coreclr#7737) Commit migrated from https://github.com/dotnet/coreclr/commit/5738641d34502b0206c3c09cf85aae75e632994a --- src/coreclr/src/debug/di/breakpoint.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/coreclr/src/debug/di/breakpoint.cpp b/src/coreclr/src/debug/di/breakpoint.cpp index 1e381a5..e3e4fb0 100644 --- a/src/coreclr/src/debug/di/breakpoint.cpp +++ b/src/coreclr/src/debug/di/breakpoint.cpp @@ -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) { } -- 2.7.4