mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 13:47:41 +03:00
util.ringbuffer: Prevent creation of buffer with negative size
Previously this would have been (unsigned)-1 which is a large positive integer.
This commit is contained in:
parent
0bb1474ce6
commit
4bab7af07d
2 changed files with 6 additions and 1 deletions
|
@ -197,7 +197,7 @@ static int rb_free(lua_State *L) {
|
|||
}
|
||||
|
||||
static int rb_new(lua_State *L) {
|
||||
size_t size = luaL_optinteger(L, 1, sysconf(_SC_PAGESIZE));
|
||||
lua_Integer size = luaL_optinteger(L, 1, sysconf(_SC_PAGESIZE));
|
||||
luaL_argcheck(L, size > 0, 1, "positive integer expected");
|
||||
ringbuffer *b = lua_newuserdata(L, sizeof(ringbuffer) + size);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue