tio: fix bug in body receive

This commit is contained in:
Michael Scire 2021-02-24 10:12:25 -08:00 committed by SciresM
parent 0da3b2b273
commit 97875c7d2f

View file

@ -76,7 +76,7 @@ namespace ams::tio {
/* Receive the request body, if necessary. */ /* Receive the request body, if necessary. */
if (request->header.body_size > 0) { if (request->header.body_size > 0) {
if (htcs::Recv(fd, request->body, request->header.body_size, htcs::HTCS_MSG_WAITALL) != sizeof(request->header.body_size)) { if (htcs::Recv(fd, request->body, request->header.body_size, htcs::HTCS_MSG_WAITALL) != request->header.body_size) {
break; break;
} }
} }