winhttp: Remove redundant "not 0" test of argument len.

This commit is contained in:
Michael Stefaniuc 2010-05-17 01:11:43 +02:00 committed by Alexandre Julliard
parent eb90d475cd
commit eb558c4403
1 changed files with 1 additions and 1 deletions

View File

@ -736,7 +736,7 @@ BOOL netconn_recv( netconn_t *conn, void *buf, size_t len, int flags, int *recvd
}
else memcpy( conn->peek_msg, buf, *recvd );
}
if (*recvd < 1 && len) return FALSE;
if (*recvd < 1) return FALSE;
return TRUE;
#else
return FALSE;