How many of you are aware that its safe to delete a NULL pointer? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-05T04:19:34Z http://stackoverflow.com/feeds/question/724688 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/724688/how-many-of-you-are-aware-that-its-safe-to-delete-a-null-pointer 19 How many of you are aware that its safe to delete a NULL pointer? Robert Gould 2009-04-07T08:48:15Z 2009-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#724696 11 Answer by Neil Butterworth for How many of you are aware that its safe to delete a NULL pointer? Neil Butterworth 2009-04-07T08:51:13Z 2009-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&amp;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#724701 1 Answer by Gamecat for How many of you are aware that its safe to delete a NULL pointer? Gamecat 2009-04-07T08:53:13Z 2009-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#724708 1 Answer by Gayan for How many of you are aware that its safe to delete a NULL pointer? Gayan 2009-04-07T08:54:39Z 2009-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#724720 16 Answer by aJ for How many of you are aware that its safe to delete a NULL pointer? aJ 2009-04-07T08:59:15Z 2009-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#724749 7 Answer by siukurnin for How many of you are aware that its safe to delete a NULL pointer? siukurnin 2009-04-07T09:05:58Z 2009-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#724782 0 Answer by Simeon Pilgrim for How many of you are aware that its safe to delete a NULL pointer? Simeon Pilgrim 2009-04-07T09:19:50Z 2009-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#724795 1 Answer by anon for How many of you are aware that its safe to delete a NULL pointer? anon 2009-04-07T09:25:09Z 2009-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-&gt;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#724812 0 Answer by yesraaj for How many of you are aware that its safe to delete a NULL pointer? yesraaj 2009-04-07T09:30:04Z 2009-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#724829 8 Answer by jab for How many of you are aware that its safe to delete a NULL pointer? jab 2009-04-07T09:34:45Z 2009-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#724835 0 Answer by RED SOFT ADAIR-StefanWoe for How many of you are aware that its safe to delete a NULL pointer? RED SOFT ADAIR-StefanWoe 2009-04-07T09:36:09Z 2009-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#724845 10 Answer by Earwicker for How many of you are aware that its safe to delete a NULL pointer? Earwicker 2009-04-07T09:39:33Z 2009-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#725084 2 Answer by daz-fuller for How many of you are aware that its safe to delete a NULL pointer? daz-fuller 2009-04-07T10:51:32Z 2009-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#725223 0 Answer by janneb for How many of you are aware that its safe to delete a NULL pointer? janneb 2009-04-07T11:33:38Z 2009-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#725503 2 Answer by Daniel Daranas for How many of you are aware that its safe to delete a NULL pointer? Daniel Daranas 2009-04-07T12:41:00Z 2009-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>