I was wondering if this code leak :

int main()
{
boost::ptr_vector <char> v;
v.push_back(new char[10]);
v.clear()
}

Will the ptr_vector destructor or clear() function delete the pointers it contains or do i have to do it myself?

link|improve this question
v.push_back(new char[10]); I don't think this does what you think it does. Looking at the Boost documentation push_back only covers a single elements. (At any rate there'd be no way for the callee to know the size of your allocation.) – asveikau Feb 9 '11 at 20:23
It's adding a dynamic char array to the ptr_vector. It's use in the code i'm reviewing and it works fine, but i'm not sure the memory is released. – Ephemere Feb 9 '11 at 20:27
5  
@Ephemere: Following new[] with delete invokes undefined behavior. It's pure coincidence that it appears to work fine. – FredOverflow Feb 9 '11 at 20:30
2  
Also, it appears you simply want a std::vector<std::string>. – FredOverflow Feb 9 '11 at 20:44
FredOverflow is right, try running your code through valgrind or something similar. – Jan Feb 9 '11 at 20:58
show 2 more comments
feedback

1 Answer

From the vector documentation (http://www.cplusplus.com/reference/stl/vector/~vector/):

Vector destructor

Destructs the container object. This calls each of the contained element's destructors, and deallocates all the storage capacity allocated by the vector.

delete[] won't be called, so it'll leak. And as other commenters pointed out, there are more STL ways to do it.

link|improve this answer
6  
question is about boost::ptr_vector, not std::vector – CharlesB Feb 9 '11 at 20:51
feedback

Your Answer

 
or
required, but never shown

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