Coverity: fix high impact issues

This commit is contained in:
wmayer
2016-08-17 15:33:04 +02:00
parent 9b013f7254
commit d98337b5f2
6 changed files with 12 additions and 9 deletions

View File

@@ -138,8 +138,12 @@ int main( int argc, char ** argv )
// Destruction phase ===========================================================
Console().Log("FreeCAD terminating...\n");
// close open documents
App::GetApplication().closeAllDocuments();
try {
// close open documents
App::GetApplication().closeAllDocuments();
}
catch(...) {
}
// cleans up
Application::destruct();

View File

@@ -118,6 +118,7 @@ extern "C"
Dl_info info;
int ret = dladdr((void*)initFreeCAD, &info);
if ((ret == 0) || (!info.dli_fname)) {
free(argv);
PyErr_SetString(PyExc_ImportError, "Cannot get path of the FreeCAD module!");
return;
}