show/hide this revision's text 2 typo

I just realized after years of writting 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++?

show/hide this revision's text 1

How many of you are aware that its safe to delete a NULL pointer?

I just realized after years of writting 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++?