Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Just a quick question:

Do I need to delete a pointer if I haven't actually assigned a new value to it?

What I've done if created a pointer and then handed it a reference to something like so:

Planet *planetPointer;

planetPointer = &earth;

Do I need to delete this pointer or can I just set it to null?

share|improve this question
5  
Only delete what you new. – chris Dec 4 '12 at 18:15
2  
To be a little more pedantic than @chris: The rule is that for every new you should have a delete at some point, and for every new[] you should have a delete[] at some point. – Nik Bougalis Dec 4 '12 at 18:16
Duplicate - stackoverflow.com/questions/12513426/… – user93353 Dec 4 '12 at 18:19
possible duplicate of C++ calling delete on variable allocated on the stack – John Dibling Dec 4 '12 at 18:58

1 Answer

up vote 6 down vote accepted

You don't need to delete it, and, moreover, you shouldn't delete it. If earth is an automatic object, it will be freed automatically. So by manually deleting a pointer to it, you go into undefined behavior.

Only delete what you allocate with new.

share|improve this answer
1  
To put it another way: If you didn't new the object, you don't have ownership of it (unless relevant documentation says otherwise), and if you don't have ownership of it you shouldn't deallocate it. – cdhowie Dec 4 '12 at 18:16
Even worse, in a way, is when earth is a reference to a dynamically allocated object. Assuming that other author was a good citizen, that earth object will eventually be freed by the thing that allocated it. Delete it here and the program will fail on that later deletion. The reason this is nastier is because the error message makes it appears that the error is at the second delete. The author of the earth-allocating code will inevitable receive a nasty phone call or email saying "Your code is broken! It's dropping core." – David Hammen Dec 4 '12 at 18:34

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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