summaryrefslogtreecommitdiff
path: root/TAO/tao
diff options
context:
space:
mode:
authorOssama Othman <ossama-othman@users.noreply.github.com>2003-03-10 19:03:35 +0000
committerOssama Othman <ossama-othman@users.noreply.github.com>2003-03-10 19:03:35 +0000
commit88e614b8f89a49118a82004633a8023eb863b755 (patch)
treef5e9f9bdbf12c399bbf7704106c564aaaa4904f8 /TAO/tao
parent7ae2e259e5c8ab491810e360da018b55bfe37541 (diff)
downloadATCD-88e614b8f89a49118a82004633a8023eb863b755.tar.gz
ChangeLogTag:Mon Mar 10 11:03:14 2003 Ossama Othman <ossama@uci.edu>
Diffstat (limited to 'TAO/tao')
-rw-r--r--TAO/tao/DynamicInterface/DII_ClientRequestInfo.cpp4
-rw-r--r--TAO/tao/DynamicInterface/DII_ClientRequestInfo.h2
-rw-r--r--TAO/tao/DynamicInterface/Request.cpp4
3 files changed, 6 insertions, 4 deletions
diff --git a/TAO/tao/DynamicInterface/DII_ClientRequestInfo.cpp b/TAO/tao/DynamicInterface/DII_ClientRequestInfo.cpp
index c0fd57fc78c..830ecefc746 100644
--- a/TAO/tao/DynamicInterface/DII_ClientRequestInfo.cpp
+++ b/TAO/tao/DynamicInterface/DII_ClientRequestInfo.cpp
@@ -13,9 +13,9 @@ ACE_RCSID (DynamicInterface,
TAO_DII_ClientRequestInfo::TAO_DII_ClientRequestInfo (
TAO_GIOP_Invocation *_tao_invocation,
CORBA::Object_ptr _tao_target,
- CORBA::Request * request)
+ CORBA::Request_ptr request)
: TAO_ClientRequestInfo_i (_tao_invocation, _tao_target),
- request_ (CORBA::Request::_duplicate (request)),
+ request_ (request),
result_ (0)
{
}
diff --git a/TAO/tao/DynamicInterface/DII_ClientRequestInfo.h b/TAO/tao/DynamicInterface/DII_ClientRequestInfo.h
index e0c06f72500..def225409d8 100644
--- a/TAO/tao/DynamicInterface/DII_ClientRequestInfo.h
+++ b/TAO/tao/DynamicInterface/DII_ClientRequestInfo.h
@@ -71,7 +71,7 @@ private:
private:
- CORBA::Request_var request_;
+ CORBA::Request_ptr request_;
CORBA::Long result_;
};
diff --git a/TAO/tao/DynamicInterface/Request.cpp b/TAO/tao/DynamicInterface/Request.cpp
index 8d11e801c04..0b3adee0ffd 100644
--- a/TAO/tao/DynamicInterface/Request.cpp
+++ b/TAO/tao/DynamicInterface/Request.cpp
@@ -169,7 +169,9 @@ CORBA::Request::invoke (ACE_ENV_SINGLE_ARG_DECL)
&call,
_invoke_status);
- TAO_DII_ClientRequestInfo _tao_ri (&call,this->target_ ,this);
+ TAO_DII_ClientRequestInfo _tao_ri (&call,
+ this->target_,
+ this);
#endif /* TAO_HAS_INTERCEPTORS */
// Loop as needed for forwarding.