1
0
mirror of https://github.com/OpenTTD/OpenTTD.git synced 2025-08-26 16:09:10 +00:00

Fix 75b6051b: removing items from the ini could leave the group in a bad state (#9445)

This commit is contained in:
Patric Stout
2021-07-17 17:26:50 +02:00
committed by GitHub
parent 460991ecf4
commit ab601115a9

View File

@@ -112,8 +112,9 @@ void IniGroup::RemoveItem(const std::string &name)
if (item->name != name) continue;
*prev = item->next;
if (this->last_item == &this->item) {
this->last_item = &item->next;
/* "last_item" is a pointer to the "real-last-item"->next. */
if (this->last_item == &item->next) {
this->last_item = prev;
}
item->next = nullptr;