1
0
鏡像自 https://github.com/luanti-org/luanti.git 已同步 2025-11-05 01:35:29 +01:00

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

此提交包含在:
sfan5
2016-12-21 10:20:06 +01:00
父節點 04f68a87ee
當前提交 cc7c31a5bc

查看文件

@@ -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);