From 7384d881f761cec945da627d5d3705011df5ddf8 Mon Sep 17 00:00:00 2001 From: eap Date: Thu, 19 Sep 2013 12:40:41 +0000 Subject: [PATCH] Fix omniORB::fatalException at SALOME termination after creating a Mesh in Python Deactivate CORBA object in destructor --- src/SMESH_I/SMESH_MeshEditor_i.cxx | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/SMESH_I/SMESH_MeshEditor_i.cxx b/src/SMESH_I/SMESH_MeshEditor_i.cxx index 3edcb167d..7a89a00cf 100644 --- a/src/SMESH_I/SMESH_MeshEditor_i.cxx +++ b/src/SMESH_I/SMESH_MeshEditor_i.cxx @@ -458,6 +458,10 @@ SMESH_MeshEditor_i::SMESH_MeshEditor_i(SMESH_Mesh_i* theMesh, bool isPreview): SMESH_MeshEditor_i::~SMESH_MeshEditor_i() { + PortableServer::POA_var poa = SMESH_Gen_i::GetPOA(); + PortableServer::ObjectId_var anObjectId = poa->servant_to_id(this); + poa->deactivate_object(anObjectId.in()); + //deleteAuxIDSources(); delete myPreviewMesh; myPreviewMesh = 0; delete myPreviewEditor; myPreviewEditor = 0; -- 2.39.2