1) IPAL22049 TC5.1.5: Application crash at close document operation
2) Bug IPAL22067 TC5.1.5: SIGSEGV exception at close application after MESH-002 scenario execution
Avoid double deletion of the Salome Generic Objects:
1. First decrement of the reference count in the SALOMEDSImpl_AttributeIOR::~SALOMEDSImpl_AttributeIOR();
2. Second decrement of the reference count in RemovePostponed(...) method;
void SALOMEDS_Study_i::Close()
{
SALOMEDS::Locker lock;
-
+
RemovePostponed(-1);
SALOMEDS::SComponentIterator_var itcomponent = NewComponentIterator();
try {
CORBA::Object_var obj = _orb->string_to_object(anIORs[i].c_str());
SALOME::GenericObj_var aGeneric = SALOME::GenericObj::_narrow(obj);
- if (!CORBA::is_nil(aGeneric)) aGeneric->Destroy();
+ //rnv: To avoid double deletion of the Salome Generic Objects:
+ //rnv: 1. First decrement of the reference count in the SALOMEDSImpl_AttributeIOR::~SALOMEDSImpl_AttributeIOR();
+ //rnv: 2. Second decrement of the reference count in the next string : aGeneric->Destroy();
+ //if (!CORBA::is_nil(aGeneric)) aGeneric->Destroy();
} catch (...) {}
}