netty5/handler/src
Trustin Lee cdd2e1c8c1 Fix unbounded expansion of cumulative buffer in SslHandler
Related: #3567

Motivation:

SslHandler.channelReadComplete() forgets to call
super.channelReadComplete(), which discards read bytes from the
cumulative buffer.  As a result, the cumulative buffer can expand its
capacity unboundedly.

Modifications:

Call super.channelReadComplete() instead of calling
ctx.fireChannelReadComplete()

Result:

Fixes #3567
2015-04-02 14:57:40 +09:00
..
main/java/io/netty/handler Fix unbounded expansion of cumulative buffer in SslHandler 2015-04-02 14:57:40 +09:00
test Fix intermittent test failure in LoggingHandlerTest 2015-03-31 15:13:30 +09:00