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 am using a varibale of type std::map and I keep inserting data in it and updating them, But after few minutes, the data I am reading back is corrupted. Is that possible? Or I am mis-diagnosing? Under whcih circumstances would that be possible? Thanks in advance.

share|improve this question
Can't comment on it until we see how you use the map. – KennyTM May 6 '11 at 17:39
What are you storing in your map? This really could be something like invalid pointers or many other things. – birryree May 6 '11 at 17:40
2  
I bet 1 eurocent on lacking copy ctors. – Erik May 6 '11 at 17:42

closed as not a real question by Nawaz, Mark B, meagar, larsmans, ybungalobill May 6 '11 at 17:48

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

Here is a case where entries into a std::map could be corrupted.

std::map<int, int *> map;

for (int i=0; i<20; ++i) {
    int result = i*i*i;
    map[i] = &result;
}

Now, this case has little to do with the map itself, but more to do with the object that I put in. In this case, the object that I put in loses scope after the insert, and then is not backed by any memory. (It's an invalid pointer).

share|improve this answer
1  
If this turns out to be the answer, StackOverflow needs a clairvoyance badge. – Mark Ransom May 6 '11 at 17:45

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