openwrt/package/libs/uclibc++
Ben Kelly e1e9d27655 uclibc++: patch bugfix erase() on derived __base_associative
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>
2017-03-01 20:37:36 +01:00
..
files move library packages to package/libs/ 2012-10-08 11:24:12 +00:00
patches uclibc++: patch bugfix erase() on derived __base_associative 2017-03-01 20:37:36 +01:00
Makefile treewide: clean up download hashes 2016-12-16 22:39:22 +01:00