Merge pull request #107 from glyptodon/fdset-init

GUAC-1477: Ensure any fd_set used by guac_socket is always properly initialized.
This commit is contained in:
James Muehlner 2016-02-01 15:17:29 -08:00
commit e8cd669be2
2 changed files with 8 additions and 8 deletions

View File

@ -77,6 +77,10 @@ static int __guac_socket_ssl_select_handler(guac_socket* socket, int usec_timeou
struct timeval timeout;
int retval;
/* Initialize fd_set with single underlying file descriptor */
FD_ZERO(&fds);
FD_SET(data->fd, &fds);
/* No timeout if usec_timeout is negative */
if (usec_timeout < 0)
retval = select(data->fd + 1, &fds, NULL, NULL, NULL);
@ -85,10 +89,6 @@ static int __guac_socket_ssl_select_handler(guac_socket* socket, int usec_timeou
else {
timeout.tv_sec = usec_timeout/1000000;
timeout.tv_usec = usec_timeout%1000000;
FD_ZERO(&fds);
FD_SET(data->fd, &fds);
retval = select(data->fd + 1, &fds, NULL, NULL, &timeout);
}

View File

@ -92,6 +92,10 @@ int __guac_socket_fd_select_handler(guac_socket* socket, int usec_timeout) {
struct timeval timeout;
int retval;
/* Initialize fd_set with single underlying file descriptor */
FD_ZERO(&fds);
FD_SET(data->fd, &fds);
/* No timeout if usec_timeout is negative */
if (usec_timeout < 0)
retval = select(data->fd + 1, &fds, NULL, NULL, NULL);
@ -100,10 +104,6 @@ int __guac_socket_fd_select_handler(guac_socket* socket, int usec_timeout) {
else {
timeout.tv_sec = usec_timeout/1000000;
timeout.tv_usec = usec_timeout%1000000;
FD_ZERO(&fds);
FD_SET(data->fd, &fds);
retval = select(data->fd + 1, &fds, NULL, NULL, &timeout);
}