summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteve Huston <shuston@riverace.com>1998-09-22 22:01:05 +0000
committerSteve Huston <shuston@riverace.com>1998-09-22 22:01:05 +0000
commit99105796af305cb360b5e1db93f6f2b2eb8d4351 (patch)
treec0fba785f2a5c89186931a0c6df5758506861e09
parent086d810efb90fc2b6a9bfc51bc8c5d0147061f2a (diff)
downloadATCD-99105796af305cb360b5e1db93f6f2b2eb8d4351.tar.gz
In CORBA_ORB ctor set leader_follower_info_.leader_thread_ID_ with
ACE_OS::NULL_thread, not 0.
-rw-r--r--TAO/tao/ORB.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/TAO/tao/ORB.cpp b/TAO/tao/ORB.cpp
index 81c00769c9c..f3998a56014 100644
--- a/TAO/tao/ORB.cpp
+++ b/TAO/tao/ORB.cpp
@@ -83,7 +83,7 @@ CORBA_ORB::CORBA_ORB (void)
trading_service_ (CORBA_Object::_nil ())
{
leader_follower_info_.leaders_ = 0;
- leader_follower_info_.leader_thread_ID_ = 0;
+ leader_follower_info_.leader_thread_ID_ = ACE_OS::NULL_thread;
this->cond_become_leader_ =
new ACE_SYNCH_CONDITION (leader_follower_info_.leader_follower_lock_);
}