Skip to content

Commit 2a1c029

Browse files
committed
socket: fix handling frames split over >2 chunks
Fixes #718
1 parent 9ae0194 commit 2a1c029

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

socket/framesocket.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,7 @@ func (fs *FrameSocket) processData(msg []byte) {
199199
msg = nil
200200
}
201201
} else {
202-
if len(fs.incoming)+len(msg) >= fs.incomingLength {
202+
if fs.receivedLength+len(msg) >= fs.incomingLength {
203203
copy(fs.incoming[fs.receivedLength:], msg[:fs.incomingLength-fs.receivedLength])
204204
msg = msg[fs.incomingLength-fs.receivedLength:]
205205
fs.frameComplete()

0 commit comments

Comments
 (0)