I am finding it hard to debug an access violation issue in my code. Trying to understand the stack traces and dump files i wanted to understand this. If an access violation is happening in a destructor of a class, say for example
abc::~abc()
{
int *p = NULL;
*p = 100;
}
Will the stack trace collected in the dump file contain this destructor call ?
Please help me understand this.