Created attachment 2073[details]
nfds set to highestfd + 1
This one's pretty straightforward. The first argument of select() is supposed to be the max file descriptor being watched + 1. To this end, int highestfd is declared and set, but the actual select() call doesn't use it.
git format-patch attached.
Created attachment 2073 [details] nfds set to highestfd + 1 This one's pretty straightforward. The first argument of select() is supposed to be the max file descriptor being watched + 1. To this end, int highestfd is declared and set, but the actual select() call doesn't use it. git format-patch attached.