Commit eb558c44 authored by Michael Stefaniuc's avatar Michael Stefaniuc Committed by Alexandre Julliard

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

parent eb90d475
......@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment