util.poll: Zero FD sets watched for errors on creation

This commit is contained in:
Kim Alvefur 2018-10-07 20:58:51 +02:00
parent ceadb9c57c
commit 4a73f5daef

View file

@ -389,6 +389,8 @@ int Lnew(lua_State *L) {
FD_ZERO(&state->wantwrite);
FD_ZERO(&state->readable);
FD_ZERO(&state->writable);
FD_ZERO(&state->all);
FD_ZERO(&state->err);
state->processed = FD_SETSIZE;
#endif