net.server_epoll: Ignore ENOENT when deregitering socket

It should not really happen
This commit is contained in:
Kim Alvefur 2018-10-12 03:21:11 +02:00
parent bbf669b2c5
commit afeb1f6f02
2 changed files with 4 additions and 2 deletions

View file

@ -452,7 +452,7 @@ int luaopen_util_poll(lua_State *L) {
#endif
}
lua_createtable(L, 0, 2);
lua_createtable(L, 0, 3);
{
lua_pushcfunction(L, Lnew);
lua_setfield(L, -2, "new");
@ -461,6 +461,7 @@ int luaopen_util_poll(lua_State *L) {
lua_setfield(L, -2, #named_error);
push_errno(EEXIST);
push_errno(ENOENT);
}
return 1;