input/Curl: simpler GPollFD initialisation

Using initializer list.
This commit is contained in:
Max Kellermann 2013-01-15 18:15:14 +01:00
parent 1c7ee737e6
commit 4cfc4a5a94
1 changed files with 2 additions and 5 deletions

View File

@ -337,11 +337,8 @@ curl_update_fds(void)
for (int fd = 0; fd <= max_fd; ++fd) {
gushort events = input_curl_fd_events(fd, &rfds, &wfds, &efds);
if (events != 0) {
curl.fds.push_front(GPollFD());
const auto poll_fd = &curl.fds.front();
poll_fd->fd = fd;
poll_fd->events = events;
g_source_add_poll(curl.source, poll_fd);
curl.fds.push_front({fd, events, 0});
g_source_add_poll(curl.source, &curl.fds.front());
}
}
}