Fix Settings::remove() always returning true

master
Kahrl 2016-01-19 10:15:01 +01:00
parent 87291ea44a
commit b67eab3b00
1 changed files with 8 additions and 2 deletions

View File

@ -880,8 +880,14 @@ bool Settings::remove(const std::string &name)
{
MutexAutoLock lock(m_mutex);
delete m_settings[name].group;
return m_settings.erase(name);
std::map<std::string, SettingsEntry>::iterator it = m_settings.find(name);
if (it != m_settings.end()) {
delete it->second.group;
m_settings.erase(it);
return true;
} else {
return false;
}
}