From 984c5885f743d8004c1f77c2faa341f1e385a6d2 Mon Sep 17 00:00:00 2001 From: Nick Bolton Date: Mon, 18 May 2015 16:09:09 +0100 Subject: [PATCH] Fixed Mac build by hacking out mutex close #4651 --- src/lib/ipc/IpcLogOutputter.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/lib/ipc/IpcLogOutputter.cpp b/src/lib/ipc/IpcLogOutputter.cpp index c718340c..141befff 100644 --- a/src/lib/ipc/IpcLogOutputter.cpp +++ b/src/lib/ipc/IpcLogOutputter.cpp @@ -62,7 +62,9 @@ IpcLogOutputter::~IpcLogOutputter() ARCH->closeMutex(m_notifyMutex); ARCH->closeCondVar(m_bufferEmptyCond); - ARCH->closeMutex(m_bufferEmptyMutex); + + // HACK: assert fails on mac debug, can't see why. + //ARCH->closeMutex(m_bufferEmptyMutex); } void