diff options
author | bala <bala@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2002-05-09 17:00:35 +0000 |
---|---|---|
committer | bala <bala@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2002-05-09 17:00:35 +0000 |
commit | 319926272bc25470603eb1a91fea825942813c9a (patch) | |
tree | 4f61a537faefba63db6f012c6dd3aa591c51bb62 /TAO/tao/ORB.cpp | |
parent | 0873f499a84f03aff1cd99dc0c81607d0efbe447 (diff) | |
download | ATCD-319926272bc25470603eb1a91fea825942813c9a.tar.gz |
ChangeLogTag: Thu May 9 11:38:16 2002 Balachandran Natarajan <bala@cs.wustl.edu>
Diffstat (limited to 'TAO/tao/ORB.cpp')
-rw-r--r-- | TAO/tao/ORB.cpp | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/TAO/tao/ORB.cpp b/TAO/tao/ORB.cpp index 909c3e02a9f..50c8bdbb2f8 100644 --- a/TAO/tao/ORB.cpp +++ b/TAO/tao/ORB.cpp @@ -1862,12 +1862,14 @@ CORBA_ORB::url_ior_string_to_object (const char* str // of profiles and tell the MProfile object to allocate enough memory // to hold them all. - int retv = - this->orb_core_->connector_registry ()->make_mprofile ( - str, - mprofile - ACE_ENV_ARG_PARAMETER); + TAO_Connector_Registry *conn_reg = + this->orb_core_->connector_registry (ACE_ENV_SINGLE_ARG_PARAMETER); + ACE_CHECK_RETURN (0); + int retv = + conn_reg->make_mprofile (str, + mprofile + ACE_ENV_ARG_PARAMETER); ACE_CHECK_RETURN (CORBA::Object::_nil ()); // Return nil. if (retv != 0) |