mirror of
https://github.com/reactos/wine.git
synced 2024-11-26 05:00:30 +00:00
winhttp: Remove redundant "not 0" test of argument len.
This commit is contained in:
parent
eb90d475cd
commit
eb558c4403
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user