Add missing free() on SpdySessionHandler buffers

This commit is contained in:
Trustin Lee 2012-12-17 19:29:36 +09:00
parent 8b82ff5ce0
commit 3f9441f4c1

View File

@ -98,12 +98,12 @@ public class SpdySessionHandler
@Override @Override
public void freeInboundBuffer(ChannelHandlerContext ctx, Buf buf) throws Exception { public void freeInboundBuffer(ChannelHandlerContext ctx, Buf buf) throws Exception {
// Nothing to free buf.free();
} }
@Override @Override
public void freeOutboundBuffer(ChannelHandlerContext ctx, Buf buf) throws Exception { public void freeOutboundBuffer(ChannelHandlerContext ctx, Buf buf) throws Exception {
// Nothing to free buf.free();
} }
@Override @Override