Daniel Jelinski
Daniel Jelinski
computeIfAbsent is not listed as modifyingMethod; as a result the following piece of code generates a false positive: ``` public abstract class CacheFbBug { private final Map hashableStringCache; public CacheFbBug()...
Please review this trivial patch that fixes the compilation on Windows with `--enable-jvm-feature-link-time-opt`. --------- ### Progress - [x] Change must be properly reviewed (1 review required, with at least 1...
### Background We use two epoll handles; One is used only for EPOLLIN events, the other is used for EPOLLOUT. Both are always used with EPOLLONESHOT. Each epoll handle has...
ASLR is a technique designed to make various types of buffer overruns more difficult to exploit, by moving segments around a bit. The stack could be shifted a few bytes...
Replace the custom unsigned divide / remainder functions with the compiler-optimized Long.divideUnsigned / remainderUnsigned. No new tests. Existing tier1-3 tests continue to pass. I added a new set of divide...
TLS 1.3 changed the way it generates the FFDHE shared secret. In TLS 1.2, the leading zeroes in the shared secret were stripped, and in TLS 1.3 the leading zeroes...
This PR fixes a deadlock between the `localConnectionIdManager` and the `connections` map by closing the manager before calling `connections.compute`. No new tests; the issue requires a complex setup to reproduce,...