vote up 1 vote down star

One of my C# Winforms applications randomly displays a "pure virtual function call" message box. When I click on the ok button of that message box the application immediately shuts down. I cannot find any exception in my application logfiles and the eventlog is empty. Can anybody tell me possible reasons for this crash and how I can further analyse the root cause of the problem? thx

flag

2 Answers

vote up 4 vote down check

Are you calling an abstract function from a destructor?

Via a certain search engine: http://www.google.com/search?q=pure+virtual+function+call+c%23

Raymond has a pretty detailed response: http://blogs.msdn.com/oldnewthing/archive/2004/04/28/122037.aspx

link|flag
vote up -2 vote down

Hmmm, this one often used to be caused by mixing up some components built in Release configuration, and others in Debug. Possibly a third-party library's debug build is being linked into your release build app.

link|flag
I'm sorry to say, you would have to explain why this would be caused before I could change my downvote – 1800 INFORMATION Jan 21 at 10:09
LOL - why would you care? It's not your question, and unless you can prove that the answer is incorrect/doesn't solve his problem your downvote is pointless. My response is based on 10 years of debugging C++, something I thankfully don't have to do anymore. – endian Jan 21 at 10:28
I would care because I like to help people. I think you should improve your answer by providing some further information. This might help people who are reading this site and trying to figure things out. – 1800 INFORMATION Jan 21 at 10:39
Also, don't you think it's kind of obvious that you just went through and downvoted a bunch of my questions? – 1800 INFORMATION Jan 21 at 10:39

Your Answer

Get an OpenID
or

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