1
1

poll: Fixed another wrong invalid fd check in bsd_poll.

Этот коммит содержится в:
Andreas Schneider 2010-06-17 11:47:39 +02:00
родитель edffc2a291
Коммит f4facc4e10

Просмотреть файл

@ -136,7 +136,7 @@ static int bsd_poll(ssh_pollfd_t *fds, nfds_t nfds, int timeout) {
/* compute fd_sets and find largest descriptor */
for (max_fd = 0, i = 0; i < nfds; i++) {
if (fds[i].fd < 0) {
if (fds[i].fd == (socket_t) -1) {
continue;
}