mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 13:47:41 +03:00
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:
parent
1e4153ffc1
commit
d3c236c693
1 changed files with 1 additions and 1 deletions
|
@ -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) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue