pposix: Generate an error when a passed string isn’t "unlimited".

This commit is contained in:
Emmanuel Gil Peyrot 2018-08-08 09:28:42 +02:00
parent 1a23a874bc
commit c1be2da977

View file

@ -552,6 +552,7 @@ rlim_t arg_to_rlimit(lua_State *L, int idx, rlim_t current) {
if(strcmp(lua_tostring(L, idx), "unlimited") == 0) {
return RLIM_INFINITY;
}
return luaL_argerror(L, idx, "unexpected type");
case LUA_TNUMBER:
return lua_tointeger(L, idx);