mirror of
https://github.com/minetest/minetest.git
synced 2024-11-23 16:13:46 +01:00
Fix Settings::remove() always returning true
This commit is contained in:
parent
87291ea44a
commit
b67eab3b00
@ -880,8 +880,14 @@ bool Settings::remove(const std::string &name)
|
|||||||
{
|
{
|
||||||
MutexAutoLock lock(m_mutex);
|
MutexAutoLock lock(m_mutex);
|
||||||
|
|
||||||
delete m_settings[name].group;
|
std::map<std::string, SettingsEntry>::iterator it = m_settings.find(name);
|
||||||
return m_settings.erase(name);
|
if (it != m_settings.end()) {
|
||||||
|
delete it->second.group;
|
||||||
|
m_settings.erase(it);
|
||||||
|
return true;
|
||||||
|
} else {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user