diff options
-rw-r--r-- | socket.c | 8 |
1 files changed, 6 insertions, 2 deletions
@@ -167,8 +167,12 @@ int soread(so) struct socket *so; * a close will be detected on next iteration. * A return of -1 wont (shouldn't) happen, since it didn't happen above */ - if (n == 2 && nn == iov[0].iov_len) - nn += recv(so->s, iov[1].iov_base, iov[1].iov_len, 0); + if (n == 2 && nn == iov[0].iov_len) { + int ret; + ret = recv(so->s, iov[1].iov_base, iov[1].iov_len, 0); + if (ret > 0) + nn += ret; + } DEBUG_MISC((dfd, " ... read nn = %d bytes\n", nn)); #endif |