http://blog.wolfire.com/2009/04/always-initialize-your-memory/
I ran into an interesting bug when I was messing with an early version of David’s shadows. I was a little surprised to see my full name projected onto the ground
I often hear that you should always initialize your memory before using it, but I had never seen such a vivid example of what happens when you don’t! Mac OS X draws the screen using OpenGL, so if you use uninitialized VRAM as a texture, you can accidentally load discarded images from earlier computer use.
Here are a few more screenshots:
So, try not to display raw allocated memory to the user. You never know what might be in there.