I hava a segmentation fault. debug with gdb, the first frame in the stack is

in the typeinfo for MyClass()

does someone know something about the typeinfo ?

link|improve this question
7  
Can you paste part of your code that deals with typeinfo or typeid? – Armen Tsirunyan Mar 18 '11 at 14:45
2  
and you're not compiling -fno-rtti are you? – Rup Mar 18 '11 at 14:47
the code in my company's computer,and this seg fault happend sometimes,now every time . and no -fno-rtti. – user666199 Mar 18 '11 at 14:52
and i'm sure the virtual function has definition. Thank u all – user666199 Mar 18 '11 at 14:54
1  
Well, you are probably passing an invalid pointer to typeid(). How does it become invalid - with information you've provided, it's anyone's guess. – atzz Mar 18 '11 at 15:39
feedback

2 Answers

I suspect that the typeinfo being the top of the frame is totally a red herring in this case. You need to go up the callstack until you find your own code and look in more detail at that point. Almost certainly you're trying to get typeinfo from a null pointer but it's somewhat possible it's just a garbage pointer value (which would be less obvious).

link|improve this answer
feedback

RTTI only applies to classes with at least a virtual method, so make sure you have one.

Also, remember that you can use RTTI directly (dynamic_cast, typeinfo, typeid) ou indirectly (catch is or can be implemented in terms of dynamic_cast).

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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