Merge branch 'master' of github.com:netty/netty
This commit is contained in:
commit
92a907c4d7
@ -70,9 +70,12 @@ public class SpdyFrameDecoder extends FrameDecoder {
|
|||||||
protected Object decodeLast(
|
protected Object decodeLast(
|
||||||
ChannelHandlerContext ctx, Channel channel, ChannelBuffer buffer)
|
ChannelHandlerContext ctx, Channel channel, ChannelBuffer buffer)
|
||||||
throws Exception {
|
throws Exception {
|
||||||
|
try {
|
||||||
Object frame = decode(ctx, channel, buffer);
|
Object frame = decode(ctx, channel, buffer);
|
||||||
headerBlockDecompressor.end();
|
|
||||||
return frame;
|
return frame;
|
||||||
|
} finally {
|
||||||
|
headerBlockDecompressor.end();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user