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:41:51 -0500
commitd82e98f6f49f9e3c1733de7bbffc2b12a5f11443 (patch)
tree05ad944f902a4bccda70e8994dd5370160b839cf
parent5c3be5e7c83de98794c4d625317a76a84fd94e63 (diff)
downloadATCD-d82e98f6f49f9e3c1733de7bbffc2b12a5f11443.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 a0850d489f6..86dc2fbfd5f 100644
--- a/ACE/ace/Module.cpp
+++ b/ACE/ace/Module.cpp
@@ -185,7 +185,8 @@ ACE_Module<ACE_SYNCH_USE, TIME_POLICY>::ACE_Module (const ACE_TCHAR *module_name
ACE_Task<ACE_SYNCH_USE, TIME_POLICY> *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, TIME_POLICY>::ACE_Module");