Václav Haisman
Václav Haisman
[**@nickl-**](https://github.com/nickl-) commented on [Aug 12, 2018, 7:06 PM GMT+2](https://github.com/beanshell/beanshell/issues/493#issuecomment-412356895 "2018-08-12T17:06:39Z - Replied by Github Reply Comments"): > [@wiix](https://github.com/wiix) which CVE? Has this been resolved? > > I think the previous...
Welp, I think I have hit this as well.
Why does the code even try to force BouncyCastle? I tried to disable the BouncyCastle provider registration and I have changed some to not depend on it and most tests...
Are you using the asynchronous logging feature? If you are not using it, you can disable the threadpool entirely. The option is the one below your new patched option.
I thought about this and I think this is incorrect way of handling CTRL+C on Windows. I think that what you need to do is to install a handler using...
> Here's a blog post from a Microsoft developer that explicitly states that applications should not do any cleanup in DLL_PROCESS_DETACH: https://devblogs.microsoft.com/oldnewthing/20120105-00/?p=8683 IF lpReserved is indicating that the process is...
Compression is not supported.
My gut feeling is to say "Don't do that." I will have to think about this.
What about solving this on your side like this: Register a handler with [`std::atexit()`](https://en.cppreference.com/w/cpp/utility/program/atexit) to call `log4cplus::deinitialize()` which should shut down things properly.
> have the same problem, even though the doConfigure() throws a std::runtime_error, it cannot be caught correctly Why can't it be caught correctly?