summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2014-01-24 10:04:58 +0000
committerSteve Huston <shuston@riverace.com>2015-01-09 15:52:43 -0500
commit160dc09b163ab37c116c3246264eb3270aba7f2d (patch)
treec2988e56bba41ab219d5e77cf848e57a25bf6b69
parentc73935ee63718a5fff98104f96bbbb261fbd956e (diff)
downloadATCD-160dc09b163ab37c116c3246264eb3270aba7f2d.tar.gz
Pull in coverity fix for uninit_ctor next_
-rw-r--r--ACE/ace/Module.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/ACE/ace/Module.cpp b/ACE/ace/Module.cpp
index cded99621cf..b0828a2e430 100644
--- a/ACE/ace/Module.cpp
+++ b/ACE/ace/Module.cpp
@@ -183,7 +183,8 @@ ACE_Module<ACE_SYNCH_USE>::ACE_Module (const ACE_TCHAR *module_name,
ACE_Task<ACE_SYNCH_USE> *reader_q,
void *args,
int flags /* = M_DELETE */)
- : flags_ (M_FLAGS_NOT_SET)
+ : next_ (0),
+ flags_ (M_FLAGS_NOT_SET)
{
ACE_TRACE ("ACE_Module<ACE_SYNCH_USE>::ACE_Module");