We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9ae0194 commit 2a1c029Copy full SHA for 2a1c029
socket/framesocket.go
@@ -199,7 +199,7 @@ func (fs *FrameSocket) processData(msg []byte) {
199
msg = nil
200
}
201
} else {
202
- if len(fs.incoming)+len(msg) >= fs.incomingLength {
+ if fs.receivedLength+len(msg) >= fs.incomingLength {
203
copy(fs.incoming[fs.receivedLength:], msg[:fs.incomingLength-fs.receivedLength])
204
msg = msg[fs.incomingLength-fs.receivedLength:]
205
fs.frameComplete()
0 commit comments