vote up 0 vote down star

We received crash dump from customer site. I see that in one of the structures o nstack __vfptr is NUL.

Does it always point to problematic condition (memeory overrun, deleting object twice...) or is there case where this pointer can be null.

flag

63% accept rate

5 Answers

vote up 6 vote down

Are you using memset() anywhere on instances of your classes?

I've seen this problem before and the cause was code like

class C : SomeClassWithVirtualFunctions
{
public:
  C()
  {
    memset( this, 0, sizeof ( C ) ) ; // BAD!! sets _vfptr to 0 too
  }
}

cppcheck is neat

link|flag
vote up 2 vote down

You may be seeing a partially destroyed object on the stack. The compiler may mark part of an object as destroyed by clearing the virtual function table pointer, so that it can correctly implement destructors of classes with "diamond" inheritance (multiple inheritance of classes that have a common, virtual base class) If the program crashes during the destruction of the object, you'll see the partially destroyed object in the dump.

Older MSVC compilers did not correctly implement destructors for classes with diamond inheritance. Any time you tried to destroy one, the program would crash. I'm not sure if this is still the case.

link|flag
That is intresting, it exactly what happens. The program with diamond inheritance crashes during destruction. – Boris Jun 15 at 10:33
Can you supply MS link for the problem? – Boris Jun 15 at 10:36
I've no idea if MS ever documented the bug. You could try a Bing search! – Nat Jun 15 at 11:29
Or you could try asking about it on this site. – Nat Jun 16 at 18:08
vote up 1 vote down

While generally the answer is "yes", i think you should consider that might be a debugger glitch too.

link|flag
True, especially if you are running optimzied code. I can certainly imagine this happening if the __vfptr is not live because it's not used. An good optimizer will then drop the redundant initialization. – MSalters Jun 15 at 8:03
vote up 0 vote down

Normally, I get vptr corruption when the object has been deleted twice (and yes, it is always a bug). Most of the time for me, the vptr is just pointing to some random block of memory, but it sounds like yours is getting overwritten by NULL, which could be the OS blanking out reclaimed memory, or it could be a pointer to what is doing the overwriting.

Consider using boost::shared_ptr to maintain lifetime with ownership.

link|flag
vote up 0 vote down

This can happen if you try to obtain run-time type information (i.e. use the typeid function) on an object of a class that has no virtual functions.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.