summaryrefslogtreecommitdiff
path: root/ACE/ace/Module.cpp
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2012-03-07 13:33:25 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2012-03-07 13:33:25 +0000
commit9de20ee2bc4128120ccf1533686e7d2997e27966 (patch)
treecfa1ba35311acce0e7e68b196464c3a1c2f76483 /ACE/ace/Module.cpp
parente611fb5f5e651a7b6745537d6de19aa7b7e8b117 (diff)
downloadATCD-9de20ee2bc4128120ccf1533686e7d2997e27966.tar.gz
Wed Mar 7 13:31:58 UTC 2012 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/Base_Thread_Adapter.h: * ace/Base_Thread_Adapter.cpp: * ace/ETCL/ETCL_Constraint.inl: * ace/Module.cpp: * ace/Stream.cpp: * ace/Thread_Manager.h: * ace/Timer_Hash_T.cpp: Fixed coverity errors
Diffstat (limited to 'ACE/ace/Module.cpp')
-rw-r--r--ACE/ace/Module.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/ACE/ace/Module.cpp b/ACE/ace/Module.cpp
index cded99621cf..49cdcf98cc2 100644
--- a/ACE/ace/Module.cpp
+++ b/ACE/ace/Module.cpp
@@ -158,7 +158,9 @@ ACE_Module<ACE_SYNCH_USE>::sibling (ACE_Task<ACE_SYNCH_USE> *orig)
template <ACE_SYNCH_DECL>
ACE_Module<ACE_SYNCH_USE>::ACE_Module (void)
- : flags_ (M_FLAGS_NOT_SET)
+ : next_ (0)
+ , arg_ (0)
+ , flags_ (M_FLAGS_NOT_SET)
{
ACE_TRACE ("ACE_Module<ACE_SYNCH_USE>::ACE_Module");
this->name (ACE_TEXT ("<unknown>"));