From d82e98f6f49f9e3c1733de7bbffc2b12a5f11443 Mon Sep 17 00:00:00 2001 From: Johnny Willemsen Date: Fri, 24 Jan 2014 10:04:58 +0000 Subject: Pull in coverity fix for uninit_ctor next_ --- ACE/ace/Module.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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_Module (const ACE_TCHAR *module_name ACE_Task *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_Module"); -- cgit v1.2.1