sndio: fixed poll() call (thanks, kdrakehp!).

Fixes Bugzilla #3705.

--HG--
extra : histedit_source : c2f9bec926056c41ec1c7245ddb52569179c447a
This commit is contained in:
Ryan C. Gordon 2017-07-20 20:40:17 -04:00
parent 086e2c8e29
commit 8f2891d58c

View file

@ -184,7 +184,7 @@ SNDIO_CaptureFromDevice(_THIS, void *buffer, int buflen)
r = SNDIO_sio_read(this->hidden->dev, buffer, buflen);
while (r == 0 && !SNDIO_sio_eof(this->hidden->dev)) {
if ((nfds = SNDIO_sio_pollfd(this->hidden->dev, this->hidden->pfd, POLLIN)) <= 0
|| poll(this->hidden->pfd, nfds, INFTIM) <= 0) {
|| poll(this->hidden->pfd, nfds, INFTIM) < 0) {
return -1;
}
revents = SNDIO_sio_revents(this->hidden->dev, this->hidden->pfd);