From 22e9be48adb5bc9bcf15672e634a4471f0f56c2d Mon Sep 17 00:00:00 2001 From: Jeff Hill Date: Thu, 21 Jun 2001 23:04:44 +0000 Subject: [PATCH] fixed bug in proper cleanup of client context --- src/ca/cac.cpp | 4 ++-- src/ca/cac.h | 1 - 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/src/ca/cac.cpp b/src/ca/cac.cpp index 18b537897..ca79fe96b 100644 --- a/src/ca/cac.cpp +++ b/src/ca/cac.cpp @@ -219,11 +219,11 @@ cac::~cac () // make certain that process thread isnt deleting // tcpiiu objects at the same that this thread is // - if ( this->pRecvProcThread ) { + if ( this->pRecvProcessThread ) { this->recvProcessThreadExitRequest = true; this->recvProcessActivityEvent.signal (); this->recvProcessThreadExit.wait (); - delete this->pRecvProcThread; + delete this->pRecvProcessThread; } { diff --git a/src/ca/cac.h b/src/ca/cac.h index 306aed46b..57e787638 100644 --- a/src/ca/cac.h +++ b/src/ca/cac.h @@ -166,7 +166,6 @@ private: epicsEvent ioDone; epicsTimerQueueActive *pTimerQueue; char *pUserName; - epicsThread *pRecvProcThread; class udpiiu *pudpiiu; class searchTimer *pSearchTmr; class repeaterSubscribeTimer