You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Line 270 in OpenSSLContextSPI.java cause a memory leak problem.
"serverSessionContext.setSessionIdContext("test".getBytes(StandardCharsets.US_ASCII));"
Reason:
in the jni interface, it create a pointer, "sidCtx", points to the id context of created session, which is not free in freeSSLContext.
can we just remove this line?
The text was updated successfully, but these errors were encountered:
Line 270 in OpenSSLContextSPI.java cause a memory leak problem.
"serverSessionContext.setSessionIdContext("test".getBytes(StandardCharsets.US_ASCII));"
Reason:
in the jni interface, it create a pointer, "sidCtx", points to the id context of created session, which is not free in freeSSLContext.
can we just remove this line?
The text was updated successfully, but these errors were encountered: