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

coverity#1338262 Uncaught exception

Change-Id: I95f00b63f21b29bc3c22a4891ebc5668fed723fc
üst 9aa7c837
...@@ -1152,6 +1152,9 @@ SAL_IMPLEMENT_MAIN() { ...@@ -1152,6 +1152,9 @@ SAL_IMPLEMENT_MAIN() {
<< "Bad input <" << e1.getUri() << ">: " << e1.getDetail() << "Bad input <" << e1.getUri() << ">: " << e1.getDetail()
<< std::endl; << std::endl;
std::exit(EXIT_FAILURE); std::exit(EXIT_FAILURE);
} catch (std::exception & e1) {
std::cerr << "Failure: " << e1.what() << std::endl;
std::exit(EXIT_FAILURE);
} }
} }
......
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