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

coverity#1308588 Uncaught exception

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