Skip to content
Snippets Groups Projects
Commit 1f877657 authored by Joseph Mirabel's avatar Joseph Mirabel
Browse files

Fix SEGV at shutdown.

parent fd7a50df
No related branches found
No related tags found
No related merge requests found
......@@ -33,7 +33,8 @@ namespace gepetto {
Server::~Server ()
{
delete graphicalInterfaceServantid_;
//TODO for a reason I do not understand, this SEGV.
//delete graphicalInterfaceServantid_;
}
void
......@@ -44,7 +45,8 @@ namespace gepetto {
void Server::deactivateAndDestroyServers()
{
poa_->deactivate_object(*graphicalInterfaceServantid_);
//TODO for a reason I do not understand, this SEGV.
//poa_->deactivate_object(*graphicalInterfaceServantid_);
}
void Server::createContext ()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment