util.poll: Fix monitoring of socket exceptions in select mode

Since state->err is a set of all watched FDs, this mistake caused all
sockets to appear to have errors.
This commit is contained in:
Kim Alvefur 2018-10-06 17:19:50 +02:00
parent 1e4153ffc1
commit d3c236c693

View file

@ -293,7 +293,7 @@ int Lwait(lua_State *L) {
tv.tv_sec = (time_t)timeout;
tv.tv_usec = ((suseconds_t)(timeout * 1000000)) % 1000000;
ret = select(FD_SETSIZE, &state->readable, &state->writable, NULL, &tv);
ret = select(FD_SETSIZE, &state->readable, &state->writable, &state->err, &tv);
#endif
if(ret == 0) {