(svn r14257) -Fix (r14153): incorrect update of ini-file group tail pointer causing memory corruption.

pull/155/head
rubidium 16 years ago
parent a42bef612e
commit 466e7740d7

@ -124,9 +124,10 @@ void IniFile::RemoveGroup(const char *name)
if (prev != NULL) {
prev->next = prev->next->next;
if (this->last_group == &group->next) this->last_group = &prev->next;
} else {
this->group = this->group->next;
prev = this->group;
if (this->last_group == &group->next) this->last_group = &this->group;
}
group->next = NULL;

Loading…
Cancel
Save