summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbala <balanatarajan@users.noreply.github.com>2004-07-10 17:44:55 +0000
committerbala <balanatarajan@users.noreply.github.com>2004-07-10 17:44:55 +0000
commite51b95f72ea58f14ebd41eeebee9c986d0ca92f4 (patch)
tree7f9f022bc51b75b1643135f6ff183b23a0a7366f
parent4a8a85161bc4c8bdae300f6e8d2af1b478592601 (diff)
downloadATCD-e51b95f72ea58f14ebd41eeebee9c986d0ca92f4.tar.gz
ChangeLogTag:Sat Jul 10 12:43:17 2004 Balachandran Natarajan <bala@dre.vanderbilt.edu>
-rw-r--r--TAO/ChangeLog8
-rw-r--r--TAO/tao/DynamicInterface/DII_Invocation_Adapter.cpp2
-rw-r--r--TAO/tao/DynamicInterface/DII_Invocation_Adapter.h2
3 files changed, 10 insertions, 2 deletions
diff --git a/TAO/ChangeLog b/TAO/ChangeLog
index 870b917d538..22c37786bef 100644
--- a/TAO/ChangeLog
+++ b/TAO/ChangeLog
@@ -1,3 +1,11 @@
+Sat Jul 10 12:43:17 2004 Balachandran Natarajan <bala@dre.vanderbilt.edu>
+
+ * tao/DynamicInterface/DII_Invocation_Adapter.cpp:
+ * tao/DynamicInterface/DII_Invocation_Adapter.h:
+
+ Fixed a improper use of Object_var which showed up as test
+ failures in the deffered synchronous tests.
+
Sat Jul 10 10:23:33 2004 Balachandran Natarajan <bala@dre.vanderbilt.edu>
* TAO-INSTALL.html:
diff --git a/TAO/tao/DynamicInterface/DII_Invocation_Adapter.cpp b/TAO/tao/DynamicInterface/DII_Invocation_Adapter.cpp
index 08eab2d7e7f..36000c40896 100644
--- a/TAO/tao/DynamicInterface/DII_Invocation_Adapter.cpp
+++ b/TAO/tao/DynamicInterface/DII_Invocation_Adapter.cpp
@@ -134,7 +134,7 @@ namespace TAO
Invocation_Status
DII_Deferred_Invocation_Adapter::invoke_twoway (
TAO_Operation_Details &op,
- CORBA::Object *&effective_target,
+ CORBA::Object_var &effective_target,
Profile_Transport_Resolver &r,
ACE_Time_Value *&max_wait_time
ACE_ENV_ARG_DECL)
diff --git a/TAO/tao/DynamicInterface/DII_Invocation_Adapter.h b/TAO/tao/DynamicInterface/DII_Invocation_Adapter.h
index 4425c9ad011..0041e0d07ba 100644
--- a/TAO/tao/DynamicInterface/DII_Invocation_Adapter.h
+++ b/TAO/tao/DynamicInterface/DII_Invocation_Adapter.h
@@ -143,7 +143,7 @@ namespace TAO
protected:
virtual Invocation_Status invoke_twoway (
TAO_Operation_Details &op,
- CORBA::Object *&effective_target,
+ CORBA::Object_var &effective_target,
Profile_Transport_Resolver &r,
ACE_Time_Value *&max_wait_time
ACE_ENV_ARG_DECL);