1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2025-06-25 06:31:14 +02:00

libmain: Catch logger exceptions in handleExceptions

Avoid std::terminate in case logging code also
throws.
This commit is contained in:
Sergei Zimmerman 2025-05-22 23:08:59 +00:00
parent b4bea57667
commit 90d1ff4805
No known key found for this signature in database
GPG key ID: A9B0B557CA632325

View file

@ -315,6 +315,7 @@ int handleExceptions(const std::string & programName, std::function<void()> fun)
ErrorInfo::programName = baseNameOf(programName);
std::string error = ANSI_RED "error:" ANSI_NORMAL " ";
try {
try {
try {
fun();
@ -342,6 +343,10 @@ int handleExceptions(const std::string & programName, std::function<void()> fun)
printError(error + e.what());
return 1;
}
} catch (...) {
/* In case logger also throws just give up. */
return 1;
}
return 0;
}