fix invalid packet

This commit is contained in:
yihaoDeng 2022-08-18 10:34:55 +08:00
parent e016c8f729
commit 4dc5df8453
1 changed files with 1 additions and 1 deletions

View File

@ -277,7 +277,7 @@ void uvOnRecvCb(uv_stream_t* cli, ssize_t nread, const uv_buf_t* buf) {
tTrace("%s conn %p alread read complete packet", transLabel(pTransInst), conn);
if (uvHandleReq(conn) == false) {
destroyConn(conn, true);
break;
return;
}
}
return;