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

fail on exception

Change-Id: Ib48c6b05b7002db19e47d07fcfc0241468452190
üst e903601e
...@@ -377,13 +377,9 @@ try_again: ...@@ -377,13 +377,9 @@ try_again:
/* If AFL_PERSISTENT not set or PERSIST_MAX exceeded, exit normally. */ /* If AFL_PERSISTENT not set or PERSIST_MAX exceeded, exit normally. */
} }
catch (const Exception& e) catch (...)
{ {
SAL_WARN("vcl.app", "Fatal exception: " << e.Message); abort();
}
catch (const std::exception &e)
{
SAL_WARN("vcl.app", "Fatal exception: " << e.what());
} }
_exit(ret); _exit(ret);
......
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