I use boost 'intrusive_ptr' in my code but when I delete some objects I got a crash !

In fact I use the same 'intrusive_ptr' into a class and return it, like this :

typedef intrusive_ptr<Node> ref;

class MyContainer
{
ref SmartPointer;
};

class Compiler
{
private:
ref MyNode;

public:
ref getMyNode() { return MyNode; }
    ref process() {MyNode.Reset(); ... return MyNode; }
};

MyContainer * c1 = new MyContainer();
c1->SmartPointer = compiler.process();

delete c1; <= CRASH
link|improve this question

56% accept rate
2  
This depends on a lot of code, that is not shown here. – Kiril Kirov May 18 '11 at 10:26
Are you sure that's the real code? You can't assign to c1->MyNode because MyContainer doesn't have a MyNode member. And compiler is undeclared. And there's no process function. – Alan Stokes May 18 '11 at 10:58
Sure, it is not the right code ! Because I have more than 200Kb of codes playing wiht this ! So, it is difficult to show where is the error in reality ! I just try to show what and where I think that the problem is ! Notices that I have update the example ! – user346113 May 18 '11 at 11:47
@user346113 Without proper compiling code, there is not much we can do. – Sjoerd May 18 '11 at 13:33
I understand ! But... thanks for your help !!! – user346113 May 18 '11 at 14:41
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.