Skip to content
Snippets Groups Projects
Commit ebf0697f authored by Vladimír Čunát's avatar Vladimír Čunát
Browse files

Merge !215: lua: do *not* truncate cache size to unsigned

parents b9c99804 09f39925
Branches
Tags
2 merge requests!254Knot Resolver 1.2.5,!215lua: do *not* truncate cache size to unsigned
Pipeline #2023 passed with stages
in 1 minute and 5 seconds
......@@ -15,6 +15,7 @@
*/
#include <assert.h>
#include <stdint.h>
#include <uv.h>
#include <contrib/cleanup.h>
#include <libknot/descriptor.h>
......@@ -563,7 +564,14 @@ static int cache_open(lua_State *L)
/* Select cache storage backend */
struct engine *engine = engine_luaget(L);
unsigned cache_size = lua_tonumber(L, 1);
lua_Number csize_lua = lua_tonumber(L, 1);
if (!(csize_lua >= 8192 && csize_lua < SIZE_MAX)) { /* min. is basically arbitrary */
format_error(L, "invalid cache size specified");
lua_error(L);
}
size_t cache_size = csize_lua;
const char *conf = n > 1 ? lua_tostring(L, 2) : NULL;
const char *uri = conf;
const struct kr_cdb_api *api = cache_select(engine, &conf);
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment