Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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??

share|improve this question
I need to read more carefully. What is 'this'? – rkyser Jun 28 '12 at 21:09
1  
You should give us this code's context. That code isolated works perfectly fine. – mfontanini Jun 28 '12 at 21:11
The code is huge, and from the core dump, the software always hangs at this line then goes into the map library – Kam Jun 28 '12 at 21:12
1  
myMap might 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
yes and the debugger exits at this line, is there a way to check if myMap is corrupted? how can it be corrupted? any example? – Kam Jun 28 '12 at 21:14
show 2 more comments

closed as not a real question by George Stocker Jun 30 '12 at 2:04

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.

1 Answer

up vote 1 down vote accepted

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:

class MyClass {
  public:
    selfInsert(std::string myKey) {
      if(!myKey.empty()) {
        myMap[myKey] = this;
      }
    }

  private:
    std::map<std::string, myClass*> myMap;
}

int main()
{
  MyClass *a = new MyClass();
  delete a;
  a->selfInsert();
}
share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.