forked from organicmaps/organicmaps
Fix use of invalid iterator in Beam::Add
`pop_back` invalidates `it` if `it == std::prev(m_entries.end())` Signed-off-by: Osyotr <Osyotr@users.noreply.github.com>
This commit is contained in:
parent
ca2f33d3bc
commit
d0c4e79822
1 changed files with 8 additions and 0 deletions
|
@ -53,7 +53,15 @@ public:
|
|||
}
|
||||
|
||||
if (m_entries.size() == m_capacity)
|
||||
{
|
||||
if (it == std::prev(m_entries.end()))
|
||||
{
|
||||
m_entries.back() = Entry(key, value);
|
||||
return;
|
||||
}
|
||||
|
||||
m_entries.pop_back();
|
||||
}
|
||||
|
||||
m_entries.insert(it, Entry(key, value));
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue