Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix OpenSslClientSessionCache remove (#14366)
Motivation: Loop was adding `nativeSslSession` to the `toBeRemoved` list, instead of the loop variable `sslSession`. Modification: Add the loop variable instead, because the `nativeSslSession` can very likely be null at that point, and is specifically also not the session we want to remove. Result: Fewer bugs in SSL session caching
- Loading branch information