Kaydet (Commit) 5c249854 authored tarafından Caolán McNamara's avatar Caolán McNamara

coverity#1309070 Uncaught exception

Change-Id: I33eca20633236ab98df0eabdec4e3761d544167d
üst 84ab3ce6
...@@ -37,6 +37,11 @@ SAL_IMPLEMENT_MAIN_WITH_ARGS(argc, argv) { ...@@ -37,6 +37,11 @@ SAL_IMPLEMENT_MAIN_WITH_ARGS(argc, argv) {
std::cerr << e.m_aErrorMsg; std::cerr << e.m_aErrorMsg;
exit(1); exit(1);
} }
catch (const std::exception &e)
{
std::cerr << e.what();
exit(1);
}
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