I'm using Visual Leak Detector to detect memory leaks, and have encountered many instances of memory leaks in lines such as:
class SomeClass
{
// ...
std::map<long,long> some_map;
void func(long a_long, long b_long)
{
some_map[a_long] = b_long; // here be a memory leak
}
}
How is this even possible? there are no pointers here, no object instantiation.
Could it be a memory leak that is a side-effect of having the program crash due to something else? Would a program crash or exit(1) cause the map to not be destructed cleanly?