netty5/handler/src
Scott Mitchell 8db8aca1e7 SslHandler wrap memory leak
Motivation:
The SslHandler wrap method requires that a direct buffer be passed to the SSLEngine.wrap() call. If the ByteBuf parameter does not have an underlying direct buffer then one is allocated in this method, but it is not released.

Modifications:
- Release the direct ByteBuffer only accessible in the scope of SslHandler.wrap

Result:
Memory leak in SslHandler.wrap is fixed.
2014-10-28 06:13:06 +01:00
..
main/java/io/netty/handler SslHandler wrap memory leak 2014-10-28 06:13:06 +01:00
test Clean-up d9cccccbb3 2014-08-04 10:53:39 -07:00