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

coverity#1251175 Uncaught exception

Change-Id: I862320e5a4b8277ba39e8174b077df8c838b4629
üst 4139f124
......@@ -81,6 +81,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