mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
util.poll: Early return from __gc in case of no valid epoll FD
This could happen if the epoll FD has already been closed or the epoll_create call failed
This commit is contained in:
parent
0304fc6ba2
commit
22e0c16d4c
1 changed files with 4 additions and 0 deletions
|
@ -351,6 +351,10 @@ int Lgetfd(lua_State *L) {
|
|||
int Lgc(lua_State *L) {
|
||||
struct Lpoll_state *state = luaL_checkudata(L, 1, STATE_MT);
|
||||
|
||||
if(state->epoll_fd != -1) {
|
||||
return 0;
|
||||
}
|
||||
|
||||
if(close(state->epoll_fd) == 0) {
|
||||
state->epoll_fd = -1;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue