mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
util.pposix: setrlimit(): Add missing return on error when an incorrect number of arguments are passed
This commit is contained in:
parent
fdacf5cb34
commit
accb25e18f
1 changed files with 1 additions and 0 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue