mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
util.crand: Throw an error for sizes smaller than 1 byte
This commit is contained in:
parent
abb425e70f
commit
96d9651ece
1 changed files with 3 additions and 1 deletions
|
@ -69,7 +69,9 @@ int getrandom(void *buf, size_t buflen, unsigned int flags) {
|
|||
int Lrandom(lua_State *L) {
|
||||
char smallbuf[SMALLBUFSIZ];
|
||||
char *buf = &smallbuf[0];
|
||||
const size_t len = luaL_checkinteger(L, 1);
|
||||
const lua_Integer l = luaL_checkinteger(L, 1);
|
||||
const size_t len = l;
|
||||
luaL_argcheck(L, l >= 0, 1, "must be > 0");
|
||||
|
||||
if(len > SMALLBUFSIZ) {
|
||||
buf = lua_newuserdata(L, len);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue