mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 13:47:41 +03:00
net.server_epoll: Ignore ENOENT when deregitering socket
It should not really happen
This commit is contained in:
parent
bbf669b2c5
commit
afeb1f6f02
2 changed files with 4 additions and 2 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue