CLASS* object;

// initializing
object = new CLASS;


//shutting down....
object = 0;


take note i forgot to do this,

delete object;

i just immedietly set it to 0, so what happened there? it worked out fine here..,

thanks,