1
0
Fork 0
mirror of https://github.com/OpenMW/openmw.git synced 2025-04-03 03:06:40 +00:00

Do not use an invalid iterator

This commit is contained in:
Andrei Kortunov 2022-07-12 12:45:11 +04:00
parent 9fbcc5df5e
commit 42b9a6daaf

View file

@ -319,7 +319,7 @@ void CSMWorld::InfoCollection::removeRows (int index, int count)
++it; ++it;
} }
else else
iter->second.erase(it); it = iter->second.erase(it);
} }
else else
++it; ++it;