fail on exception

Change-Id: Ib48c6b05b7002db19e47d07fcfc0241468452190
This commit is contained in:
Caolán McNamara
2015-08-23 19:58:58 +01:00
parent e903601e63
commit 63cbf8fb02

View File

@@ -377,13 +377,9 @@ try_again:
/* If AFL_PERSISTENT not set or PERSIST_MAX exceeded, exit normally. */
}
catch (const Exception& e)
catch (...)
{
SAL_WARN("vcl.app", "Fatal exception: " << e.Message);
}
catch (const std::exception &e)
{
SAL_WARN("vcl.app", "Fatal exception: " << e.what());
abort();
}
_exit(ret);