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

coverity#1251177 Uncaught exception

Change-Id: Id71b104f8d1c420b3716b093cebad00a7eb3f431
üst dce66ad6
...@@ -68,6 +68,11 @@ SAL_IMPLEMENT_MAIN() ...@@ -68,6 +68,11 @@ SAL_IMPLEMENT_MAIN()
SAL_WARN("vcl.app", "Fatal exception: " << e.Message); SAL_WARN("vcl.app", "Fatal exception: " << e.Message);
return 1; return 1;
} }
catch (const std::exception& e)
{
SAL_WARN("vcl.app", "Fatal exception: " << e.what());
return 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