How many of you are aware that its safe to delete a NULL pointer? - Stack Overflow most recent 30 from stackoverflow.com2009-12-05T04:19:34Zhttp://stackoverflow.com/feeds/question/724688http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/724688/how-many-of-you-are-aware-that-its-safe-to-delete-a-null-pointer19How many of you are aware that its safe to delete a NULL pointer?Robert Gould2009-04-07T08:48:15Z2009-04-07T12:54:37Z
<p>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</p>
<pre><code>if(p) delete p;
</code></pre>
<p>code laying around.</p>
<p>Am I the only one that hadn't realized this? Or is it a less known feature of C++?</p>
http://stackoverflow.com/questions/724688/how-many-of-you-are-aware-that-its-safe-to-delete-a-null-pointer/724696#72469611Answer by Neil Butterworth for How many of you are aware that its safe to delete a NULL pointer?Neil Butterworth2009-04-07T08:51:13Z2009-04-07T09:10:54Z<p>A lot of C programmers don't realise that the same is true of malloc and free.</p>
<p>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.</p>
http://stackoverflow.com/questions/724688/how-many-of-you-are-aware-that-its-safe-to-delete-a-null-pointer/724701#7247011Answer by Gamecat for How many of you are aware that its safe to delete a NULL pointer?Gamecat2009-04-07T08:53:13Z2009-04-07T08:53:13Z<p>Not sure about C++, but in Delphi you can call Free on a nil pointer and it causes no problems.</p>
<p>Despite that, I continue to check for nil/NULL, just as a sanity check. </p>
http://stackoverflow.com/questions/724688/how-many-of-you-are-aware-that-its-safe-to-delete-a-null-pointer/724708#7247081Answer by Gayan for How many of you are aware that its safe to delete a NULL pointer?Gayan2009-04-07T08:54:39Z2009-04-07T09:04:45Z<p>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.</p>
http://stackoverflow.com/questions/724688/how-many-of-you-are-aware-that-its-safe-to-delete-a-null-pointer/724720#72472016Answer by aJ for How many of you are aware that its safe to delete a NULL pointer?aJ2009-04-07T08:59:15Z2009-04-07T09:16:04Z<p>In the beginning I didn't know. I learnt this after reading C++ FAQ
<a href="http://www.parashift.com/c%2B%2B-faq-lite/freestore-mgmt.html#faq-16.8" rel="nofollow">Do I need to check for NULL before delete p?</a></p>
<p>It says that "<em>The C++ language guarantees that delete p will do nothing if p is equal to NULL</em>"</p>
http://stackoverflow.com/questions/724688/how-many-of-you-are-aware-that-its-safe-to-delete-a-null-pointer/724749#7247497Answer by siukurnin for How many of you are aware that its safe to delete a NULL pointer?siukurnin2009-04-07T09:05:58Z2009-04-07T09:05:58Z<p>Ho, yes i know that ...</p>
<p>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.</p>
<p>So it seems the books are not clear enough about it !</p>
http://stackoverflow.com/questions/724688/how-many-of-you-are-aware-that-its-safe-to-delete-a-null-pointer/724782#7247820Answer by Simeon Pilgrim for How many of you are aware that its safe to delete a NULL pointer?Simeon Pilgrim2009-04-07T09:19:50Z2009-04-07T09:19:50Z<p>Kind of an odd question really. The cost of the 'problem' is not really that large. </p>
<p>Now one reason to-do it, is it allows you to call debugging commands that check for invalid pointers, or memory usage counting, etc</p>
http://stackoverflow.com/questions/724688/how-many-of-you-are-aware-that-its-safe-to-delete-a-null-pointer/724795#7247951Answer by anon for How many of you are aware that its safe to delete a NULL pointer?anon2009-04-07T09:25:09Z2009-04-07T12:34:43Z<p>Another such nifty fact is that <strong>'this' can equal NULL</strong> (although the standard stands it's an undefined behavior). For example:</p>
<pre><code>MyClass *myob = NULL;
myob->myfun();
</code></pre>
<p>Inside myfun() 'this' pointer will equal NULL.</p>
http://stackoverflow.com/questions/724688/how-many-of-you-are-aware-that-its-safe-to-delete-a-null-pointer/724812#7248120Answer by yesraaj for How many of you are aware that its safe to delete a NULL pointer?yesraaj2009-04-07T09:30:04Z2009-04-07T09:30:04Z<p>yes i know... deleting a null pointer does not have any side effect.
But i wonder why it is done in project I work</p>
<pre><code>if(NULL != pSomeObject)//any reason for checking for null
{
delete pSomeObject;
pSomeObject = NULL;//any reason for assigning null
}
</code></pre>
<p><a href="http://stackoverflow.com/questions/615355/is-there-any-reason-to-check-for-a-null-pointer-before-deleting">is-there-any-reason-to-check-for-a-null-pointer-before-deleting</a></p>
http://stackoverflow.com/questions/724688/how-many-of-you-are-aware-that-its-safe-to-delete-a-null-pointer/724829#7248298Answer by jab for How many of you are aware that its safe to delete a NULL pointer?jab2009-04-07T09:34:45Z2009-04-07T09:34:45Z<p>Something similar, the new operator always returns a valid pointer, in other case it throws an exception, so very common code like:</p>
<pre><code>MyClass *p = new MyClass;
if(!p)
return;
</code></pre>
<p>doesn't make sense.</p>
http://stackoverflow.com/questions/724688/how-many-of-you-are-aware-that-its-safe-to-delete-a-null-pointer/724835#7248350Answer by RED SOFT ADAIR-StefanWoe for How many of you are aware that its safe to delete a NULL pointer?RED SOFT ADAIR-StefanWoe2009-04-07T09:36:09Z2009-04-07T09:36:09Z<p>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:</p>
<pre><code>void DoDelete(void **p)
{
if(! p || ! *p)
return;
delete *p;
*p = NULL;
}
</code></pre>
<p>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.</p>
http://stackoverflow.com/questions/724688/how-many-of-you-are-aware-that-its-safe-to-delete-a-null-pointer/724845#72484510Answer by Earwicker for How many of you are aware that its safe to delete a NULL pointer?Earwicker2009-04-07T09:39:33Z2009-04-07T09:39:33Z<p>I estimate that about 1,200,000 people are aware of this, and the other 5,998,800,000 are still unaware.</p>
http://stackoverflow.com/questions/724688/how-many-of-you-are-aware-that-its-safe-to-delete-a-null-pointer/725084#7250842Answer by daz-fuller for How many of you are aware that its safe to delete a NULL pointer?daz-fuller2009-04-07T10:51:32Z2009-04-07T10:51:32Z<p>I only just found out about this yesterday, feel kinda dumb now</p>
http://stackoverflow.com/questions/724688/how-many-of-you-are-aware-that-its-safe-to-delete-a-null-pointer/725223#7252230Answer by janneb for How many of you are aware that its safe to delete a NULL pointer?janneb2009-04-07T11:33:38Z2009-04-07T11:33:38Z<p>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.</p>
<p>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?</p>
http://stackoverflow.com/questions/724688/how-many-of-you-are-aware-that-its-safe-to-delete-a-null-pointer/725503#7255032Answer by Daniel Daranas for How many of you are aware that its safe to delete a NULL pointer?Daniel Daranas2009-04-07T12:41:00Z2009-04-07T12:54:37Z<blockquote>
<p>Am I the only one that hadn't realized
this?</p>
</blockquote>
<p>No. Probably, other people don't know it yet.</p>
<blockquote>
<p>Or is it a less known feature of C++?</p>
</blockquote>
<p>It's a basic piece of knowledge in C++. But, for some reason, a number of people have misconceptions about it.</p>