I'm using BoundsChecker9.1 with visual c++. I have a class

class Sample{
public:
vector<AnotherClass> x;
};

When I run my program the BoundsChecker tool reports all push_back() calls such as S.x.push_back(AnotherClass()) as memory leak.. Wouldn't all the elements in vector x will always be deallocated when the Sample class goes out of scope? If so, any idea about why BoundsChecker is showing them as memory leak? And I verified that "AnotherClass" doesnt have any memory leak either!!

link|improve this question

76% accept rate
1  
Boundschecker rarely gets it wrong... – Mitch Wheat Apr 27 '10 at 11:04
Do not format your code with HTML - use the 1010 button above the text input area – anon Apr 27 '10 at 11:04
1  
@Mitch Except when it does. – anon Apr 27 '10 at 11:05
3  
@Ptabhu The leak, if there is one, may well be in AnotherClass. – anon Apr 27 '10 at 11:06
1  
Boundschecker (at least in previous versions, and I do not expect any difference) intercepts all memory allocs/deallocs. If it reports a leak, there is a very high probability that you have a leak. – Mitch Wheat Apr 27 '10 at 11:10
show 1 more comment
feedback

2 Answers

If the constructor of AnotherClass allocates memory which isn't deallocated in ~AnotherClass you will have a memory leak.

link|improve this answer
feedback

Would you mind sharing the test case?

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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