You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
openwrt/package/libs/uclibc++/patches
Ben Kelly da0b9110fc 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>
7 years ago
..
002-path_to_bash.patch
006-eabi_fix.patch
010-honor-ldflags.patch uclibc++: honor ldflags, disable SSP 9 years ago
020-template-fix.patch uclibc++: fix build with gcc 5.2 9 years ago
030-memory_corruption_fix.patch uclibc++: add a patch to fix memory corruption issues on exceptions 8 years ago
040-delete-c++14.patch uclibc++: fix build with gcc 6.1.0, which defaults to using C++14 ABI 8 years ago
050-Bugfix-erase-on-derived-__base_associative.patch uclibc++: patch bugfix erase() on derived __base_associative 7 years ago