From c8e150874ea56055ff629510de57e9254a53792a Mon Sep 17 00:00:00 2001 From: Matej Sekoranja Date: Sat, 27 Feb 2016 19:54:57 +0100 Subject: [PATCH] monitor overrun double ref. fix (cherry picked from commit fea2e1c26390158ec1a93c14abcde58a6ebc8101) --- src/remoteClient/clientContextImpl.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/remoteClient/clientContextImpl.cpp b/src/remoteClient/clientContextImpl.cpp index 8ead845..701939a 100644 --- a/src/remoteClient/clientContextImpl.cpp +++ b/src/remoteClient/clientContextImpl.cpp @@ -2295,7 +2295,8 @@ namespace epics { m_up2datePVStructure = pvStructure; - m_monitorQueue.push(newElement); + if (!m_overrunInProgress) + m_monitorQueue.push(newElement); } if (!m_overrunInProgress)