mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
util.poll: Add missing return statements in fallback mode
These allowed modifying or deleting select() state for unregistered FDs. During normal usage this should never happen. Modifying one that isn't set might cause weirdness but deleting an already deleted FD isn't a problem.
This commit is contained in:
parent
9e57e02797
commit
d8ab361f15
1 changed files with 2 additions and 0 deletions
|
@ -172,6 +172,7 @@ static int Lset(lua_State *L) {
|
|||
lua_pushnil(L);
|
||||
lua_pushstring(L, strerror(ENOENT));
|
||||
lua_pushinteger(L, ENOENT);
|
||||
return 3;
|
||||
}
|
||||
|
||||
if(!lua_isnoneornil(L, 3)) {
|
||||
|
@ -229,6 +230,7 @@ static int Ldel(lua_State *L) {
|
|||
lua_pushnil(L);
|
||||
lua_pushstring(L, strerror(ENOENT));
|
||||
lua_pushinteger(L, ENOENT);
|
||||
return 3;
|
||||
}
|
||||
|
||||
FD_CLR(fd, &state->wantread);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue