vote up 19 vote down star
2

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++?

flag

1  
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 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 at 14:45
I know it, and I still check for null strictly by force of habit. :) – grieve Apr 7 at 17:13

14 Answers

vote up 16 vote down check

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|flag
I read it in the linux manpage: linux.die.net/man/3/free -- it is missing in the BSD manpages. – ypnos Apr 7 at 9:22
vote up 11 vote down

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|flag
Yeah that's also true. But fortunately I did know that one :) – Robert Gould Apr 7 at 8:55
I believe freeing null pointer should be avoid whenever possible. – claferri Apr 7 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 at 8:58
@claferri but the standard says its kosher... I agree with you, but I think we are wrong – Robert Gould Apr 7 at 8:59
All free does is the same test that you would do, and function calls on modern hardware are not very expensive. – Neil Butterworth Apr 7 at 9:00
show 10 more comments
vote up 10 vote down

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

link|flag
Given that there were 333 views for this question when I added this coment, your numbers are now probably slightly off. – Neil Butterworth Apr 7 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 at 13:17
1  
Way to assume that the known humans on Earth constitute everything in existence that qualifies as "people". Speciesists. – chaos Apr 7 at 17:51
vote up 8 vote down

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|flag
that is another good "useless" tradition :) – Robert Gould Apr 7 at 11:25
that code did make sense on old SO's like Windows 95, windows 98, etc. – Edison Gustavo Muenz Apr 7 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. – kts Apr 7 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 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 Apr 8 at 9:37
show 1 more comment
vote up 7 vote down

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|flag
vote up 2 vote down

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

link|flag
welcome to the club :) – Robert Gould Apr 7 at 11:28
vote up 2 vote down

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|flag
vote up 1 vote down

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|flag
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 at 8:56
Good point. Time to teach this old dog a new trick. – Gamecat Apr 7 at 8:57
vote up 1 vote down

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|flag
Simple solution to this problem: use RAII and make it impossible to have deleted pointers hanging around. – Kaz Dragon Apr 7 at 12:14
vote up 1 vote down

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|flag
so what happens then ? – yesraaj Apr 7 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 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 at 9:37
None of this is true - you have undefined behavour, according to the C++ Standard. – Neil Butterworth Apr 7 at 9:44
Wondering what if myfun is virtual? – yossi1981 Apr 10 at 10:51
show 1 more comment
vote up 0 vote down

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|flag
vote up 0 vote down

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|flag
No reason, the result after the lines is the same. – xgoan Apr 7 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 at 10:13
There is reason for assigning NULL. Wild pointer is the last thing you need. – EFraim Oct 27 at 17:22
vote up 0 vote down

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|flag
It isn't even valid C++ - deleting via a void * is undefined behaviour. – Neil Butterworth Apr 7 at 9:42
You are right of course. This was only meant as pseudocode. – RED SOFT ADAIR-StefanWoe Apr 7 at 10:01
Change your signature to: template <typename T> void DoDelete(T*& p). – Luc Hermitte Apr 7 at 12:15
vote up 0 vote down

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|flag

Your Answer

Get an OpenID
or

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