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

coverity#1308563 Uncaught exception

Change-Id: I2ab21b98f4dee612b8c82ca7f1d0fef14b2a847e
üst a0d2f5c6
......@@ -70,6 +70,11 @@ SAL_IMPLEMENT_MAIN()
SAL_WARN("vcl.app", "Fatal exception: " << e.Message);
return 1;
}
catch (const std::exception &e)
{
fprintf(stderr, "fatal error: %s\n", 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