vote up 2 vote down star
1
#include <boost/ptr_container/ptr_vector.hpp>
#include <iostream>

using namespace std;
using namespace boost;

struct A {
    ~A() { cout << "deleted " << (void*)this << endl; }
};

int main() {
    ptr_vector<A>	v;
    v.push_back(new A);
    A	*temp = &v.front();
    v.release(v.begin());
    delete temp;
    return 0;
}

outputs:

deleted 0x300300
deleted 0x300300
c(6832) malloc: *** error for object 0x300300: double free
flag

2 Answers

vote up 5 vote down check

ptr_vector<A>::release returns a ptr_vector<A>::auto_type, which is a kind of light-weight smart pointer in that when an auto_type item goes out of scope, the thing it points to is automatically deleted. To recover a raw pointer to the thing, and keep it from being deleted by the auto_ptr that's holding it, you need to call release on that too:

int main() {
	ptr_vector<A> v;
	v.push_back(new A);
	A *temp=v.release(v.begin()).release();
	delete temp;
	return 0;
}

The first release tells the ptr_vector to give it up; the second tells the auto_ptr to give it up too.

link|flag
Well-explained, thanks. – Neil G May 16 at 7:02
vote up 0 vote down

This could work..

#include <boost/ptr_container/ptr_vector.hpp>
#include <iostream>

using namespace std;
using namespace boost;

struct A {
    ~A() { cout << "deleted " << (void*)this << endl; }
};

int main() {
    ptr_vector<A>       v;
    v.push_back(new A);
    A   *temp = &v.front();
    ptr_vector<A>::auto_type *forgetme =
       new ptr_vector<A>::auto_type(v.release(v.begin()));
    delete temp;
    return 0;
}

Tested with mingw g++ 3.4.5 and VC++ 2008 Express.

link|flag
1  
This leaks forgetme. – bdonlan May 16 at 1:10

Your Answer

Get an OpenID
or

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