util.poll: Fix missing return for adding duplicate FD

This commit is contained in:
Kim Alvefur 2018-10-07 18:41:44 +02:00
parent 6b592b4bee
commit 31c8b1aca3

View file

@ -92,6 +92,7 @@ int Ladd(lua_State *L) {
lua_pushnil(L); lua_pushnil(L);
lua_pushstring(L, strerror(EEXIST)); lua_pushstring(L, strerror(EEXIST));
lua_pushinteger(L, EEXIST); lua_pushinteger(L, EEXIST);
return 3;
} }
FD_CLR(fd, &state->readable); FD_CLR(fd, &state->readable);