diff options
author | Johnny Willemsen <jwillemsen@remedy.nl> | 2008-08-11 15:39:24 +0000 |
---|---|---|
committer | Johnny Willemsen <jwillemsen@remedy.nl> | 2008-08-11 15:39:24 +0000 |
commit | e4e5fe5d4b0fa4832d15debfdd5a8c4237f2656d (patch) | |
tree | 9c736a68552a497c3cd70c1ca6d4e9996a1ae96b /TAO/tao | |
parent | dba5df72d1e336220e4224460e87ce68874a6d45 (diff) | |
download | ATCD-e4e5fe5d4b0fa4832d15debfdd5a8c4237f2656d.tar.gz |
Mon Aug 11 15:39:15 UTC 2008 Johnny Willemsen <jwillemsen@remedy.nl>
Diffstat (limited to 'TAO/tao')
-rw-r--r-- | TAO/tao/Bind_Dispatcher_Guard.cpp | 3 | ||||
-rw-r--r-- | TAO/tao/Bind_Dispatcher_Guard.h | 1 |
2 files changed, 1 insertions, 3 deletions
diff --git a/TAO/tao/Bind_Dispatcher_Guard.cpp b/TAO/tao/Bind_Dispatcher_Guard.cpp index 1b0d7cc98db..8acc7125cc1 100644 --- a/TAO/tao/Bind_Dispatcher_Guard.cpp +++ b/TAO/tao/Bind_Dispatcher_Guard.cpp @@ -18,11 +18,10 @@ TAO_Bind_Dispatcher_Guard::TAO_Bind_Dispatcher_Guard (CORBA::ULong request_id, TAO_Transport_Mux_Strategy *tms) : status_(TAO_Bind_Dispatcher_Guard::UNBIND), request_id_(request_id), - rd_(rd), tms_(tms) { int const retval = - this->tms_->bind_dispatcher (this->request_id_, this->rd_); + this->tms_->bind_dispatcher (this->request_id_, rd); if (retval == -1) this->status_ = TAO_Bind_Dispatcher_Guard::NO_UNBIND; diff --git a/TAO/tao/Bind_Dispatcher_Guard.h b/TAO/tao/Bind_Dispatcher_Guard.h index ec68893ba66..24d31689905 100644 --- a/TAO/tao/Bind_Dispatcher_Guard.h +++ b/TAO/tao/Bind_Dispatcher_Guard.h @@ -54,7 +54,6 @@ public: private: TAO_Bind_Dispatcher_Status status_; CORBA::ULong request_id_; - TAO_Reply_Dispatcher* rd_; TAO_Transport_Mux_Strategy* tms_; }; |