Hello, When,i try to assign null value to my pointer,it sometimes crashes on that line. The code is something like this :
if(s_counter != NULL)
{
delete s_counter;
s_counter = NULL; // it sometimes crashes here.
}
This is not reproducable,100%,but it occurs frequently. Can anybody help in this?