util.pposix: setrlimit(): Add missing return on error when an incorrect number of arguments are passed

This commit is contained in:
Matthew Wild 2013-06-28 20:16:43 +01:00
parent fdacf5cb34
commit accb25e18f

View file

@ -500,6 +500,7 @@ int lc_setrlimit(lua_State *L) {
if(arguments < 1 || arguments > 3) {
lua_pushboolean(L, 0);
lua_pushstring(L, "incorrect-arguments");
return 2;
}
resource = luaL_checkstring(L, 1);