summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOssama Othman <ossama-othman@users.noreply.github.com>2005-02-18 18:34:27 +0000
committerOssama Othman <ossama-othman@users.noreply.github.com>2005-02-18 18:34:27 +0000
commit30614d864e328c5ec751d7b21b75b0130d7c15ed (patch)
treef5da3bbbf7175c4e6facdbdb6a3bda578462a42a
parentf12f36e221ea116c8d35f4096621b81450593251 (diff)
downloadATCD-30614d864e328c5ec751d7b21b75b0130d7c15ed.tar.gz
*** empty log message ***
-rw-r--r--TAO/tao/Collocated_Invocation.cpp8
1 files changed, 5 insertions, 3 deletions
diff --git a/TAO/tao/Collocated_Invocation.cpp b/TAO/tao/Collocated_Invocation.cpp
index 65f27abfcc5..1e6941a408e 100644
--- a/TAO/tao/Collocated_Invocation.cpp
+++ b/TAO/tao/Collocated_Invocation.cpp
@@ -48,14 +48,16 @@ namespace TAO
{
if (strat == TAO_CS_THRU_POA_STRATEGY)
{
- TAO_ServerRequest request (this->orb_core (),
+ TAO_ORB_Core * const orb_core = this->orb_core ();
+
+ TAO_ServerRequest request (orb_core,
this->details_,
this->effective_target ());
TAO_Request_Dispatcher * const dispatcher =
- this->orb_core ()->request_dispatcher ();
+ orb_core->request_dispatcher ();
- dispatcher->dispatch (this->orb_core (),
+ dispatcher->dispatch (orb_core,
request,
this->forwarded_to_.out ());
ACE_ENV_ARG_PARAMETER);