mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2024-11-22 04:11:16 -05:00
Don't leak exceptions from ExceptionCatchingApplication::notify()
This commit is contained in:
parent
29a113b73a
commit
d087a9b8ae
@ -32,13 +32,12 @@ public:
|
||||
catch (std::exception const& e)
|
||||
{
|
||||
LOG_FATAL (e.what ());
|
||||
throw;
|
||||
}
|
||||
catch (...)
|
||||
{
|
||||
LOG_FATAL ("Unexpected fatal error");
|
||||
throw;
|
||||
}
|
||||
return false;
|
||||
}
|
||||
};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user