mirror of
https://github.com/curl/curl.git
synced 2026-04-15 05:01:42 +03:00
parent
5fdf30b4dd
commit
fc04eca8f8
1 changed files with 2 additions and 1 deletions
|
|
@ -565,7 +565,8 @@ static CURLcode wait_or_timeout(struct Curl_multi *multi, struct events *ev)
|
|||
struct curltime before;
|
||||
|
||||
/* populate the fds[] array */
|
||||
for(m = ev->list, f = &fds[0]; m; m = m->next) {
|
||||
f = &fds[0];
|
||||
for(m = ev->list; m; m = m->next) {
|
||||
f->fd = m->socket.fd;
|
||||
f->events = m->socket.events;
|
||||
f->revents = 0;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue