mirror of
https://github.com/moparisthebest/curl
synced 2024-12-21 23:58:49 -05:00
read_tcp_data() fix to get the proper buffer pointer and size
This commit is contained in:
parent
01cbf08064
commit
b97e7fc730
@ -213,8 +213,8 @@ static void read_tcp_data(ares_channel channel, fd_set *read_fds, time_t now)
|
||||
* what's left to read of it).
|
||||
*/
|
||||
count = recv(server->tcp_socket,
|
||||
(void *)(server->tcp_lenbuf + server->tcp_buffer_pos),
|
||||
2 - server->tcp_buffer_pos, 0);
|
||||
(void *)(server->tcp_lenbuf + server->tcp_lenbuf_pos),
|
||||
2 - server->tcp_lenbuf_pos, 0);
|
||||
if (count <= 0)
|
||||
{
|
||||
handle_error(channel, i, now);
|
||||
|
Loading…
Reference in New Issue
Block a user