e1e9d27655
When calling erase() on a containers derived from __base_associative (e.g. multimap) and providing a pair of iterators a segfault will occur. Example code to reproduce: typedef std::multimap<int, int> testmap; testmap t; t.insert(std::pair<int, int>(1, 1)); t.insert(std::pair<int, int>(2, 1)); t.insert(std::pair<int, int>(3, 1)); t.erase(t.begin(), t.end()); Signed-off-by: Ben Kelly <ben@benjii.net> |
||
---|---|---|
.. | ||
002-path_to_bash.patch | ||
006-eabi_fix.patch | ||
010-honor-ldflags.patch | ||
020-template-fix.patch | ||
030-memory_corruption_fix.patch | ||
040-delete-c++14.patch | ||
050-Bugfix-erase-on-derived-__base_associative.patch |