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

coverity#1308569 Uncaught exception

Change-Id: Ie3f4d0d0d8197d5dcbba7c266133e06e110843df
üst ed450f7e
......@@ -61,6 +61,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