diff options
| author | Bert Münnich <be.muennich@gmail.com> | 2013-04-02 19:32:59 +0200 | 
|---|---|---|
| committer | Bert Münnich <be.muennich@gmail.com> | 2013-04-02 19:32:59 +0200 | 
| commit | 98972e98f942fa3d3cd2b8f6a831da0a1f94551f (patch) | |
| tree | 5cf114d84978452baf5b4199e8aec97678eaea9a | |
| parent | af69b2a7bbac973c837177de03616460393e28d2 (diff) | |
Fixed segfault caused by FD_ISSET() on negative fd
Reported by Kris Siwiec
| -rw-r--r-- | Makefile | 2 | ||||
| -rw-r--r-- | main.c | 2 | 
2 files changed, 2 insertions, 2 deletions
| @@ -1,4 +1,4 @@ -VERSION = 1.1 +VERSION = git-20130402  PREFIX    = /usr/local  MANPREFIX = $(PREFIX)/share/man @@ -536,7 +536,7 @@ void run(void)  				xfd = MAX(xfd, info.fd);  			}  			select(xfd + 1, &fds, 0, 0, to_set ? &timeout : NULL); -			if (FD_ISSET(info.fd, &fds)) +			if (info.fd != -1 && FD_ISSET(info.fd, &fds))  				read_info();  		} | 
