I have a
std::map<std::string, myClass*> myMap
then I am inserting like follow:
if(!myKey.empty())
{
myMap[myKey] = this;
}
This sometime is throwing a segmentation fault.
Why??
| show 2 more comments |
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.
|
Maybe your myMap is no longer accessible. For instance, it might be a reference to a deleted pointer, or, much more probable, a member variable of an already deleted class:
|
|||
|
|
myMapmight have been corrupted by some code we can't see. Have you tried debugging this? Could make it easier to determine if that's the case. – eran Jun 28 '12 at 21:12