diff options
author | bala <balanatarajan@users.noreply.github.com> | 2000-09-21 12:05:06 +0000 |
---|---|---|
committer | bala <balanatarajan@users.noreply.github.com> | 2000-09-21 12:05:06 +0000 |
commit | 9db5a0d78ed50345f644e8a36ee382056a7e3413 (patch) | |
tree | 3cd17f85212ac379fe7fe5dd610ea98116d1708c /TAO/orbsvcs | |
parent | 690bdba5829a75d190dbc208f699ed37d4f62e99 (diff) | |
download | ATCD-9db5a0d78ed50345f644e8a36ee382056a7e3413.tar.gz |
*** empty log message ***
Diffstat (limited to 'TAO/orbsvcs')
-rw-r--r-- | TAO/orbsvcs/orbsvcs/FaultTolerance/FT_IOGR_Property.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/TAO/orbsvcs/orbsvcs/FaultTolerance/FT_IOGR_Property.cpp b/TAO/orbsvcs/orbsvcs/FaultTolerance/FT_IOGR_Property.cpp index 3a33816bae4..64ee14a5ac4 100644 --- a/TAO/orbsvcs/orbsvcs/FaultTolerance/FT_IOGR_Property.cpp +++ b/TAO/orbsvcs/orbsvcs/FaultTolerance/FT_IOGR_Property.cpp @@ -89,7 +89,7 @@ TAO_FT_IOGR_Property::get_primary ( this->get_primary_profile (ior); if (pfile == 0) - ACE_THROW_RETURN (TAO_IOP::NotFound, + ACE_THROW_RETURN (TAO_IOP::NotFound (), CORBA::Object::_nil ()); // Search for the IOP::TAG_FT_PRIMARY in the tagged component of @@ -226,12 +226,12 @@ TAO_FT_IOGR_Property::set_primary ( CORBA::Octet *buf = tagged_components.component_data.get_buffer (); - for (const ACE_Message_Block *i = cdr.begin (); - i != 0; - i = i->cont ()) + for (const ACE_Message_Block *mb = cdr.begin (); + mb != 0; + mb = mb->cont ()) { - ACE_OS::memcpy (buf, i->rd_ptr (), i->length ()); - buf += i->length (); + ACE_OS::memcpy (buf, mb->rd_ptr (), mb->length ()); + buf += mb->length (); } // Set the <tagged_component> |