summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/orbsvcs/PortableGroup/PG_Object_Group.cpp
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2005-04-18 11:39:44 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2005-04-18 11:39:44 +0000
commitf16ace975a5d4380b2d267c9ed6a5cc016880e6e (patch)
tree1ad7f4529f44b25bfcce67431ebfa4faeecd7416 /TAO/orbsvcs/orbsvcs/PortableGroup/PG_Object_Group.cpp
parentd68ce3693fd49340a34a674c609cb1f3a660238a (diff)
downloadATCD-f16ace975a5d4380b2d267c9ed6a5cc016880e6e.tar.gz
ChangeLogTag: Mon Apr 18 11:26:12 UTC 2005 Johnny Willemsen <jwillemsen@remedy.nl>
Diffstat (limited to 'TAO/orbsvcs/orbsvcs/PortableGroup/PG_Object_Group.cpp')
-rw-r--r--TAO/orbsvcs/orbsvcs/PortableGroup/PG_Object_Group.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/TAO/orbsvcs/orbsvcs/PortableGroup/PG_Object_Group.cpp b/TAO/orbsvcs/orbsvcs/PortableGroup/PG_Object_Group.cpp
index d00480c4dd4..b26544df184 100644
--- a/TAO/orbsvcs/orbsvcs/PortableGroup/PG_Object_Group.cpp
+++ b/TAO/orbsvcs/orbsvcs/PortableGroup/PG_Object_Group.cpp
@@ -271,7 +271,7 @@ TAO::PG_Object_Group::set_primary_member (
this->internals_,
0);
int result = 1;
- MemberInfo * info;
+ MemberInfo * info = 0;
if (this->members_.find (the_location, info) == 0)
{
int cleared = 0;
@@ -347,7 +347,7 @@ TAO::PG_Object_Group::remove_member (
PortableGroup::MemberNotFound))
{
ACE_GUARD (TAO_SYNCH_MUTEX, guard, this->internals_);
- MemberInfo * info;
+ MemberInfo * info = 0;
if (this->members_.unbind (the_location, info) == 0)
{
if (this->members_.current_size() > 0)
@@ -579,7 +579,7 @@ TAO::PG_Object_Group::get_member_reference (
CORBA::Object_var result;
- MemberInfo * info;
+ MemberInfo * info = 0;
if (this->members_.find (the_location, info) == 0)
{
result = CORBA::Object::_duplicate (info->member_.in ());