diff --git a/modules/lua/mod_lua.c b/modules/lua/mod_lua.c index 90f34cda3e..11cbd2b910 100644 --- a/modules/lua/mod_lua.c +++ b/modules/lua/mod_lua.c @@ -1960,8 +1960,6 @@ static void *create_server_config(apr_pool_t *p, server_rec *s) { ap_lua_server_cfg *cfg = apr_pcalloc(p, sizeof(ap_lua_server_cfg)); - cfg->vm_reslists = apr_hash_make(p); - apr_thread_rwlock_create(&cfg->vm_reslists_lock, p); cfg->root_path = NULL; return cfg; diff --git a/modules/lua/mod_lua.h b/modules/lua/mod_lua.h index 7fd115330b..5b422ed54a 100644 --- a/modules/lua/mod_lua.h +++ b/modules/lua/mod_lua.h @@ -135,9 +135,6 @@ typedef struct typedef struct { - apr_hash_t *vm_reslists; - apr_thread_rwlock_t *vm_reslists_lock; - /* value of the LuaRoot directive */ const char *root_path; } ap_lua_server_cfg;