up vote 26 down vote favorite
3
share [g+] share [fb]

I just realized after years of writing C++, that I can safely delete a NULL pointer. So I figure, I'm not the only one that wasn't aware of this. Now I feel silly for all my

if(p) delete p;

code laying around.

Am I the only one that hadn't realized this? Or is it a less known feature of C++?

link|improve this question

3  
No reason to feel silly for that. Not using smart pointers, on the other hand, is a good reason to feel silly :-) – Ferruccio Apr 7 '09 at 11:37
That's enlightening. That's such a common idiom that the code I work on has a pre-processor macro that does this. I guess the upside is it'll be easy to remove them all. :-) – veefu Apr 7 '09 at 14:45
I know it, and I still check for null strictly by force of habit. :) – grieve Apr 7 '09 at 17:13
feedback

15 Answers

up vote 21 down vote accepted

In the beginning I didn't know. I learnt this after reading C++ FAQ Do I need to check for NULL before delete p?

It says that "The C++ language guarantees that delete p will do nothing if p is equal to NULL"

link|improve this answer
I read it in the linux manpage: linux.die.net/man/3/free -- it is missing in the BSD manpages. – ypnos Apr 7 '09 at 9:22
feedback

A lot of C programmers don't realise that the same is true of malloc and free.

A more interesting question is WHY programmers (both C and C++) don't realise this - it is spelt out clearly in the reference section of K&R and on page 128 of Stroustrup.

link|improve this answer
Yeah that's also true. But fortunately I did know that one :) – Robert Gould Apr 7 '09 at 8:55
I believe freeing null pointer should be avoid whenever possible. – claferri Apr 7 '09 at 8:57
1  
In C, you surely would prefere testing the pointer for non null value and then call free rather then calling free everytime, function call are much more expensive then statement. – claferri Apr 7 '09 at 8:58
1  
All free does is the same test that you would do, and function calls on modern hardware are not very expensive. – anon Apr 7 '09 at 9:00
2  
I should also point out that all the if (ptr == NULL ) tests will bloat the code, leading to possible performance problems because of loss of locality. – anon Apr 7 '09 at 9:02
show 10 more comments
feedback

Something similar, the new operator always returns a valid pointer, in other case it throws an exception, so very common code like:

MyClass *p = new MyClass;
if(!p)
   return;

doesn't make sense.

link|improve this answer
that is another good "useless" tradition :) – Robert Gould Apr 7 '09 at 11:25
that code did make sense on old SO's like Windows 95, windows 98, etc. – Edison Gustavo Muenz Apr 7 '09 at 12:57
I don't think that is always true. If you are using (for some reason) certain older c++ implementations new doesn't throw. You could also use nothrow new (MyClass *p = new(std::nothrow) MyClass). Also, you could just override operator new. – KitsuneYMG Apr 7 '09 at 13:44
This code makes sense if you are compiling using VC6. Take a look at this question: stackoverflow.com/questions/550451/… – Naveen Apr 7 '09 at 13:57
Even on new versions of MSVC (and maybe others) you can set an option to not assert on failure of new but instead return null. – Greg Domjan Apr 8 '09 at 9:37
show 3 more comments
feedback

I estimate that about 1,200,000 people are aware of this, and the other 5,998,800,000 are still unaware.

link|improve this answer
1  
Given that there were 333 views for this question when I added this coment, your numbers are now probably slightly off. – anon Apr 7 '09 at 11:38
The world population is estimated to be 6.77 billion as of April 2009, so if 1,200,000 people know it, there are 6,768,800,000 who don't :) – Daniel Daranas Apr 7 '09 at 13:17
8  
Way to assume that the known humans on Earth constitute everything in existence that qualifies as "people". Speciesists. – chaos Apr 7 '09 at 17:51
feedback

Ho, yes i know that ...

But I spent a lot of time fighting with people who write their own "operator new / delete" without knowing that sort of thing : As they usually are of the bytes-and-processing-cycles-are-precious family they would rather sell their mother down the river than checking for NULL in every call of their precious "optimized" operator.

So it seems the books are not clear enough about it !

link|improve this answer
feedback

Am I the only one that hadn't realized this?

No. Probably, other people don't know it yet.

Or is it a less known feature of C++?

It's a basic piece of knowledge in C++. But, for some reason, a number of people have misconceptions about it.

link|improve this answer
feedback

I only just found out about this yesterday, feel kinda dumb now

link|improve this answer
welcome to the club :) – Robert Gould Apr 7 '09 at 11:28
feedback

Another such nifty fact is that 'this' can equal NULL (although the standard stands it's an undefined behavior). For example:

MyClass *myob = NULL;
myob->myfun();

Inside myfun() 'this' pointer will equal NULL.

link|improve this answer
so what happens then ? – yesraaj Apr 7 '09 at 9:26
if it's a static function it should work. If you access class-members you'll dereference NULL, which crashes with an error message on all SDK's I've used...been there done that. – qwerty Apr 7 '09 at 9:34
If this will not be dereferenced inside myfun() and myfun() is not virtual, no error will occur. What C++ does is simple function call: myfun(myob). This is safe if myfun() is not virtual. If it's virtual, C++ will first dereference myob to obtain address of vtable, resulting in memory error. – anon Apr 7 '09 at 9:37
3  
None of this is true - you have undefined behavour, according to the C++ Standard. – anon Apr 7 '09 at 9:44
Wondering what if myfun is virtual? – user88637 Apr 10 '09 at 10:51
show 1 more comment
feedback

According to the discussion thread that starts here: http://gcc.gnu.org/ml/gcc-patches/2011-03/msg00252.html ... there were widely-used operating systems whose C libraries would crash if you passed a null pointer to free, but the longest-lived one of these, SunOS 4, "stopped being a reasonable portability target about 2007".

So while the standards have said that free(0) is a no-op for 22 years, it was only four years ago that practice caught up. Most people don't learn C or C++ by reading the text of the standard, they learn by reading other people's code; we're going to see this vestige cargo-culted around for a good while yet. Kinda like defining your own offsetof. Or not using exceptions, which genuinely did slow your program down if you merely turned them on as recently as MSVC2008 (don't know about 2010).

link|improve this answer
feedback

Not sure about C++, but in Delphi you can call Free on a nil pointer and it causes no problems.

Despite that, I continue to check for nil/NULL, just as a sanity check.

link|improve this answer
in C++ its safe, just learned it today. And now I feel if(p) delete p is like if((1==1)==true) :/ – Robert Gould Apr 7 '09 at 8:56
Good point. Time to teach this old dog a new trick. – Gamecat Apr 7 '09 at 8:57
feedback

Yep.. one of the first things we learnt. No need to check for null when deleting. But if someone has already deleted the object and forgot to set the pointer to NULL, then you have a problem.

link|improve this answer
1  
Simple solution to this problem: use RAII and make it impossible to have deleted pointers hanging around. – Kaz Dragon Apr 7 '09 at 12:14
feedback

In one project I work on the recommendation is to always check for NULL before calling free(). Yes, it's not needed according to the standard, but supposedly there are platforms out there where libc ties itself into a knot if you try to free a NULL pointer, and this particular project is portable to a plethora of platforms.

Though I have no idea if such platforms are actually used today, or if the rule is just some leftover from 20 years ago that nobody has bothered to update. Anybody know better?

link|improve this answer
feedback

Kind of an odd question really. The cost of the 'problem' is not really that large.

Now one reason to-do it, is it allows you to call debugging commands that check for invalid pointers, or memory usage counting, etc

link|improve this answer
feedback

yes i know... deleting a null pointer does not have any side effect. But i wonder why it is done in project I work

if(NULL != pSomeObject)//any reason for checking for null
{
 delete pSomeObject;
pSomeObject = NULL;//any reason for assigning null
}

is-there-any-reason-to-check-for-a-null-pointer-before-deleting

link|improve this answer
No reason, the result after the lines is the same. – Jesus Fernandez Apr 7 '09 at 10:00
Well, maybe there's significant diffence between how long "assign null to null pointer" and "skip assignment in case of null pointer" take to execute, but without profiling this can't be determined. And a huge comment on why the check is done would be very useful for this code maintainers. – sharptooth Apr 7 '09 at 10:13
1  
There is reason for assigning NULL. Wild pointer is the last thing you need. – EFraim Oct 27 '09 at 17:22
feedback

Safe operation of delete NULL doesnt payoff too much unless you normalize (set to NULL) already deleted pointers. Although its odd, in most cases i use self grown functions that look like this:

void DoDelete(void **p)
{
   if(! p || ! *p)
       return;
   delete *p;
   *p = NULL;
}

This is the only way to automatically avoid deleting a already deleted pointer. Of course this aint no use within a STL-Container or alike.

link|improve this answer
It isn't even valid C++ - deleting via a void * is undefined behaviour. – anon Apr 7 '09 at 9:42
You are right of course. This was only meant as pseudocode. – RED SOFT ADAIR Apr 7 '09 at 10:01
Change your signature to: template <typename T> void DoDelete(T*& p). – Luc Hermitte Apr 7 '09 at 12:15
feedback

Your Answer

 
or
required, but never shown

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