Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Duplicate fix for phmap issue 117 - segfault when out of memory
when constructing an object to be inserted throws std::bad_alloc, the slot was mark as used (even though the object was not properly constructed), so eventually the destructor of a non-initialized object was called causing a segfault. Solution: mark the slot used only after the object is successfully constructed.
- Loading branch information