mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 13:47:41 +03:00
util.ringbuffer: Prevent creation of zero-size buffer
This commit is contained in:
parent
838f8ebd5b
commit
0bb1474ce6
2 changed files with 6 additions and 0 deletions
|
@ -198,6 +198,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));
|
||||
luaL_argcheck(L, size > 0, 1, "positive integer expected");
|
||||
ringbuffer *b = lua_newuserdata(L, sizeof(ringbuffer) + size);
|
||||
|
||||
b->rpos = 0;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue