removed assignment of variable never used
This commit is contained in:
parent
fb1039f2ab
commit
f128d904a5
@ -132,7 +132,6 @@ CURLcode Curl_is_resolved(struct connectdata *conn,
|
|||||||
{
|
{
|
||||||
fd_set read_fds, write_fds;
|
fd_set read_fds, write_fds;
|
||||||
struct timeval tv={0,0};
|
struct timeval tv={0,0};
|
||||||
int count;
|
|
||||||
struct SessionHandle *data = conn->data;
|
struct SessionHandle *data = conn->data;
|
||||||
int nfds;
|
int nfds;
|
||||||
|
|
||||||
@ -141,7 +140,7 @@ CURLcode Curl_is_resolved(struct connectdata *conn,
|
|||||||
|
|
||||||
nfds = ares_fds(data->state.areschannel, &read_fds, &write_fds);
|
nfds = ares_fds(data->state.areschannel, &read_fds, &write_fds);
|
||||||
|
|
||||||
count = select(nfds, &read_fds, &write_fds, NULL,
|
(void)select(nfds, &read_fds, &write_fds, NULL,
|
||||||
(struct timeval *)&tv);
|
(struct timeval *)&tv);
|
||||||
|
|
||||||
/* Call ares_process() unconditonally here, even if we simply timed out
|
/* Call ares_process() unconditonally here, even if we simply timed out
|
||||||
|
Loading…
Reference in New Issue
Block a user