I'm using the Guichan lib and I was trying to run the "First application with Guichan, OpenGL and SDL" example, which is located here Click Here .
Everything was fine exept when I exit the program and delete all the pointers which were allocated with the "new" and because of this deletion I get an unhandled exeption/acces violation error. Note that I dont follow that example to the last line, but it should still be okay, I do the allocation in the constructor and deallocation in the destructor etc. I noticed that the same happens even if I run the example program to the last line.
Error: Click Here
(When I dont delete the pointers which were allocoted with "new", like its shown in the example, everything is just fine, not to mention the memory leak.)