From ae58a19a1b62cd67b9d46a1cbf8697d5a82a4c49 Mon Sep 17 00:00:00 2001 From: Andrew Au Date: Thu, 21 Jun 2018 10:45:31 -0700 Subject: [PATCH] Fix linux build Commit migrated from https://github.com/dotnet/coreclr/commit/c799c456e48014896fa2cf04560e59e2f15348fc --- src/coreclr/src/debug/ee/debugger.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/coreclr/src/debug/ee/debugger.cpp b/src/coreclr/src/debug/ee/debugger.cpp index 4ac32ec..941c77d 100644 --- a/src/coreclr/src/debug/ee/debugger.cpp +++ b/src/coreclr/src/debug/ee/debugger.cpp @@ -2375,8 +2375,8 @@ DebuggerLazyInit::DebuggerLazyInit() : m_CtrlCMutex(NULL), m_exAttachEvent(NULL), m_exUnmanagedAttachEvent(NULL), - m_DebuggerHandlingCtrlC(NULL), - m_garbageCollectionBlockerEvent(NULL) + m_garbageCollectionBlockerEvent(NULL), + m_DebuggerHandlingCtrlC(NULL) { } -- 2.7.4