dbx - where "this" pointer stored?
807575Jan 12 2005 — edited Jan 13 2005Hi,
I'm trying to analyse crash that occurred in a member method of an object.
I read in an article that the first input register contains the this pointer but for this particular call the first input register contains 0x0. The method in question is definitely not static but it is declared virtual in its parent class. Does the fact that a method is declared virtual makes a difference in where the this pointer is store?
In the parent class, the method is declared as
virtual void methodA()
in the child class declared as
void methodA();
Thanks in advance.