From fea2e1c26390158ec1a93c14abcde58a6ebc8101 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 --- 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 38314fd..0673157 100644 --- a/src/remoteClient/clientContextImpl.cpp +++ b/src/remoteClient/clientContextImpl.cpp @@ -2220,7 +2220,8 @@ namespace epics { m_up2datePVStructure = pvStructure; - m_monitorQueue.push(newElement); + if (!m_overrunInProgress) + m_monitorQueue.push(newElement); } if (!m_overrunInProgress)