Fix warning reported by clang (possible bug in Settings lua api)

master
sfan5 2016-12-21 10:20:06 +01:00
parent 04f68a87ee
commit cc7c31a5bc
1 changed files with 1 additions and 1 deletions

View File

@ -194,7 +194,7 @@ void LuaSettings::Register(lua_State* L)
int LuaSettings::create_object(lua_State* L)
{
NO_MAP_LOCK_REQUIRED;
bool write_allowed;
bool write_allowed = true;
const char* filename = luaL_checkstring(L, 1);
CHECK_SECURE_PATH_POSSIBLE_WRITE(L, filename, &write_allowed);
LuaSettings* o = new LuaSettings(filename, write_allowed);