Regardless of the platform (except maybe embedded systems) it's a good idea to check for NULL and then just exit without doing any (or much) cleanup by hand.
Out of memory isn't a simple error. It is a catastrophe on todays systems.
The book The Practice of Programming (Brian W. Kernighan and Rob Pike, 1999) defines functions like emalloc() which just exist exits with an error message if there's no memory left.
