Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[jetty-users] 9.1.0.RC1 ByteAccumulator.addBuffer bug?

In jetty.websocket.common.common.extensions.compress.ByteAccumulator, line 57, the test is for "buf.length + length > maxSize". Judging by the code that follows it, that test seems like it should actually be "this.length + length > maxSize". Is this a bug, or am I misunderstanding the logic here?

Back to the top