Do you need to do delete these pointers? I know they're not null but as far as I remember it's also not a valid memory adress. I'm having problems with a memory leak I cant fine
You're right helios, I'm getting it mixed up with 0xfeeefeee which is MS debug specific, knew I'd seen something like this before though. Either way, nothing has been assigned to the pointer, so Athars answer is probably what's happening.
Memory leaks are easy to avoid in most situations if you consequently follow RAII.
And they're usually easy to find when running your program through valgrind.