From: caremoli Date: Mon, 3 Mar 2008 10:57:32 +0000 (+0000) Subject: CCAR: correct small problem on deleting connection and notification objects X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=f233469264bb87cf79af04d8eccb75e068d2befd;p=modules%2Fkernel.git CCAR: correct small problem on deleting connection and notification objects --- diff --git a/src/Container/Component_i.cxx b/src/Container/Component_i.cxx index 5b7efac97..cfeeefc9b 100644 --- a/src/Container/Component_i.cxx +++ b/src/Container/Component_i.cxx @@ -63,7 +63,7 @@ bool Engines_Component_i::_isMultiInstance = false; */ //============================================================================= -Engines_Component_i::Engines_Component_i() +Engines_Component_i::Engines_Component_i():_myConnexionToRegistry(0), _notifSupplier(0) { //ASSERT(0); MESSAGE("Default Constructor, not for normal use..."); @@ -91,6 +91,7 @@ Engines_Component_i::Engines_Component_i(CORBA::ORB_ptr orb, _instanceName(instanceName), _interfaceName(interfaceName), _myConnexionToRegistry(0), + _notifSupplier(0), _ThreadId(0) , _ThreadCpuUsed(0) , _Executed(false) , @@ -137,6 +138,7 @@ Engines_Component_i::Engines_Component_i(CORBA::ORB_ptr orb, _instanceName(instanceName), _interfaceName(interfaceName), _myConnexionToRegistry(0), + _notifSupplier(0), _ThreadId(0) , _ThreadCpuUsed(0) , _Executed(false) ,