Kaydet (Commit) 9aa7c837 authored tarafından Caolán McNamara's avatar Caolán McNamara

coverity#1338260 Uncaught exception

Change-Id: Ib969223cb5c8acdad0e97ff9b944703d3ee43825
üst df35df21
...@@ -317,6 +317,9 @@ SAL_IMPLEMENT_MAIN() ...@@ -317,6 +317,9 @@ SAL_IMPLEMENT_MAIN()
<< "ERROR: Bad format of <" << e.getUri() << ">, \"" << "ERROR: Bad format of <" << e.getUri() << ">, \""
<< e.getDetail() << "\"\n"; << e.getDetail() << "\"\n";
return EXIT_FAILURE; return EXIT_FAILURE;
} catch (std::exception & e) {
std::cerr << "ERROR: " << e.what() << "\n";
return EXIT_FAILURE;
} }
return 0; return 0;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment