mirror of
https://git.salome-platform.org/gitpub/modules/smesh.git
synced 2024-12-28 18:30:35 +05:00
21948: EDF SMESH : Memory is not freed when deleting a mesh
Delete SMESHDS_Document's at destruction
This commit is contained in:
parent
1199fcd63c
commit
d3fb998efd
@ -53,6 +53,9 @@
|
||||
|
||||
using namespace std;
|
||||
|
||||
//#include <vtkDebugLeaks.h>
|
||||
|
||||
|
||||
//=============================================================================
|
||||
/*!
|
||||
* Constructor
|
||||
@ -67,11 +70,12 @@ SMESH_Gen::SMESH_Gen()
|
||||
_segmentation = _nbSegments = 10;
|
||||
SMDS_Mesh::_meshList.clear();
|
||||
MESSAGE(SMDS_Mesh::_meshList.size());
|
||||
_counters = new counters(100);
|
||||
//_counters = new counters(100);
|
||||
#ifdef WITH_SMESH_CANCEL_COMPUTE
|
||||
_compute_canceled = false;
|
||||
_sm_current = NULL;
|
||||
#endif
|
||||
//vtkDebugLeaks::SetExitError(0);
|
||||
}
|
||||
|
||||
//=============================================================================
|
||||
@ -83,6 +87,12 @@ SMESH_Gen::SMESH_Gen()
|
||||
SMESH_Gen::~SMESH_Gen()
|
||||
{
|
||||
MESSAGE("SMESH_Gen::~SMESH_Gen");
|
||||
std::map < int, StudyContextStruct * >::iterator i_sc = _mapStudyContext.begin();
|
||||
for ( ; i_sc != _mapStudyContext.end(); ++i_sc )
|
||||
{
|
||||
delete i_sc->second->myDocument;
|
||||
delete i_sc->second;
|
||||
}
|
||||
}
|
||||
|
||||
//=============================================================================
|
||||
|
Loading…
Reference in New Issue
Block a user