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).