https://bugs.kde.org/show_bug.cgi?id=398136

--- Comment #5 from Thomas Fischer <fisc...@unix-ag.uni-kl.de> ---
Git commit 6a7de90d7bbe84be71f7195f513bb78350954265 by Thomas Fischer.
Committed on 12/09/2018 at 18:02.
Pushed by thomasfischer into branch 'master'.

Fixing conflict btwn iterating over QMap and removing element

Iterating over a QMap<K,V> object and then for one selected element
stopping the iteration and removing this element using the key, i.e.
QMap<K,V>::remove(key) interferes with the map's internal memory
management and may lead to crashes.

To avoid interference, better to remove the selected element using the
iterator directly, i.e. QMap<K,V>::erase(it).

M  +5    -3    src/data/entry.cpp
M  +25   -0    src/test/CMakeLists.txt
A  +61   -0    src/test/kbibtexdatatest.cpp     [License: GPL (v2+)]

https://commits.kde.org/kbibtex/6a7de90d7bbe84be71f7195f513bb78350954265

-- 
You are receiving this mail because:
You are watching all bug changes.

Reply via email to