forked from Mirrorlandia_minetest/minetest
Fix a crash or random memory leak when reseting saved environment variable in test_servermodmanager.cpp
This commit is contained in:
parent
478b785bc8
commit
e800684ead
@ -71,11 +71,15 @@ void TestServerModManager::runTests(IGameDef *gamedef)
|
|||||||
#ifdef WIN32
|
#ifdef WIN32
|
||||||
{
|
{
|
||||||
std::string subgame_path("MINETEST_SUBGAME_PATH=");
|
std::string subgame_path("MINETEST_SUBGAME_PATH=");
|
||||||
|
if (saved_env_mt_subgame_path)
|
||||||
subgame_path.append(saved_env_mt_subgame_path);
|
subgame_path.append(saved_env_mt_subgame_path);
|
||||||
_putenv(subgame_path.c_str());
|
_putenv(subgame_path.c_str());
|
||||||
}
|
}
|
||||||
#else
|
#else
|
||||||
|
if (saved_env_mt_subgame_path)
|
||||||
setenv("MINETEST_SUBGAME_PATH", saved_env_mt_subgame_path, 1);
|
setenv("MINETEST_SUBGAME_PATH", saved_env_mt_subgame_path, 1);
|
||||||
|
else
|
||||||
|
unsetenv("MINETEST_SUBGAME_PATH");
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user