vote up 0 vote down star

Im using VS2008 and My MFC application has started to crash when setting breakpoints or running to cursor. I get lots of errors like this:-

First-chance exception at 0x78a5727c (mfc90ud.dll) in MyApp.exe: 0xC0000005: Access violation reading location 0xfffffffc.
First-chance exception at 0x00000000 in MyApp.exe: 0xC0000005: Access violation reading location 0x00000000.
First-chance exception at 0x00000000 in MyApp.exe: 0xC0000005: Access violation reading location 0x00000000.
First-chance exception at 0x00000000 in MyApp.exe: 0xC0000005: Access violation reading location 0x00000000.
First-chance exception at 0x00000000 in MyApp.exe: 0xC0000005: Access violation reading location 0x00000000.
First-chance exception at 0x00000000 in MyApp.exe: 0xC0000005: Access violation reading location 0x00000000.
First-chance exception at 0x00000000 in MyApp.exe: 0xC0000005: Access violation reading location 0x00000000.
First-chance exception at 0x00000000 in MyApp.exe: 0xC0000005: Access violation reading location 0x00000000.
First-chance exception at 0x00000000 in MyApp.exe: 0xC0000005: Access violation reading location 0x00000000.
First-chance exception at 0x00000000 in MyApp.exe: 0xC0000005: Access violation reading location 0x00000000.
First-chance exception at 0x00000000 in MyApp.exe: 0xC0000005: Access violation reading location 0x00000000.

The call stack is not much left either it only lists code in NT.dll

>   00000000()	
    ntdll.dll!7c9032a8() 	
    [Frames below may be incorrect and/or missing, no symbols loaded for ntdll.dll]	
    ntdll.dll!7c90327a() 	
    ntdll.dll!7c92aa0f() 	
    ntdll.dll!7c90e48a() 	
    ntdll.dll!7c9032a8()

I am not able to find the problem using break points or stepping through my code. The application "seems" to run normally if run using F5 in VS.

Whats the best method to track this problem down?

flag
Did you try enabling all exceptions in VS? Still it doesn't catch it? – Naveen Nov 1 at 15:05
Yes but after doing that I get another exception which I have traced back to right after the initial domodal is called. My application is wizard based. Whne I do enable all exceptions the get the original problem as posted. – Paul Nov 1 at 15:24
Rightclick your stackframes and load the symbols for ntdll. Wont solve anything, but more information cant hurt. – Simon Svensson Nov 1 at 15:25
Is it just your copy of VS with the problems? Try running it under WinDBG (microsoft.com/whdc/devtools/…) and see if breakpoints work there. If so you'll know it's a VS problem (maybe an uninstall/reinstall will fix it). – Michael Burr Nov 1 at 15:26
Have loaded symbols in VS studio now get > 00000000() ntdll.dll!ExecuteHandler2@20() + 0x26 bytes ntdll.dll!ExecuteHandler@20() + 0x24 bytes ntdll.dll!_KiUserExceptionDispatcher@8() + 0xe bytes and nothing else in the stack trace. installing windbg now. – Paul Nov 1 at 15:54
show 4 more comments

2 Answers

vote up 1 vote down check

Where is the stack overflow from your question title? Access violations generally indicate an invalid pointer dereference.

Use your revision history to find the first version where things started going boom, then critically analyze all pointer stuff going on in and around the code modified in that revision.

link|flag
Typo should be access violation in the title. I could do and thought of that but the app has many months of work gone into it at this stage. I was hoping there would be a quicker way but if not then fair enough. – Paul Nov 1 at 15:20
If it has many month of work gone into it, you are using some source control system, right? If not, start doing that right now. Seriously. – Thomas Nov 1 at 15:22
Yes. I have been using TortoiseSVN since the start. – Paul Nov 1 at 15:25
vote up 0 vote down

Visual Studio has an option somewhere to break on first chance exception (don't remember exactly where it is, maybe an exception menu item in the debug submenu?) You want to turn that on and look at your call stacks the moment they occur.

There is also an option to turn on Microsoft Symbol Server, that would automatically download the matching symbols for whatever system dll you happen to see in the stack. (sorry, don't remember how exactly thats setup either).

link|flag
It's under Debug | Exceptions | Win32 exceptions. The above exception looks strangely familiar to null pointer dereferencing. – MP24 Nov 2 at 13:26

Your Answer

Get an OpenID
or

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