OSDN Git Service

os_support: fix poll() implementation
authorMax Shakhmetov <shakhmetov.max@gmail.com>
Tue, 15 Feb 2011 16:49:27 +0000 (17:49 +0100)
committerLuca Barbato <lu_zero@gentoo.org>
Tue, 15 Feb 2011 17:11:50 +0000 (18:11 +0100)
Our poll implementation does not iterate over the pollfd array properly
while setting the revents.

Signed-off-by: Luca Barbato <lu_zero@gentoo.org>
libavformat/os_support.c

index 4f73011..0b7b59e 100644 (file)
@@ -292,7 +292,7 @@ int poll(struct pollfd *fds, nfds_t numfds, int timeout)
     if (rc < 0)
         return rc;
 
-    for(i = 0; i < (nfds_t) n; i++) {
+    for(i = 0; i < numfds; i++) {
         fds[i].revents = 0;
 
         if (FD_ISSET(fds[i].fd, &read_set))      fds[i].revents |= POLLIN;