Debugging application minidump using windbg
-
i have an MFC c++ application build with /clr option and have integrated crash reporting feature. the crash dump it generates does not show line numbers when i debug the dump using windbg. (i found that applications build with clr does not show line numbers) it shows the function name where it crashed but not the exact line number. for eg it shows: 03434456 02312434 CExApp::OnOpenFile() + 0x30c whats 0x30c ? is it an offset in the function? Is there any way to calculate the line number by using 0x30c ? thanks
-
i have an MFC c++ application build with /clr option and have integrated crash reporting feature. the crash dump it generates does not show line numbers when i debug the dump using windbg. (i found that applications build with clr does not show line numbers) it shows the function name where it crashed but not the exact line number. for eg it shows: 03434456 02312434 CExApp::OnOpenFile() + 0x30c whats 0x30c ? is it an offset in the function? Is there any way to calculate the line number by using 0x30c ? thanks
See if your PDBs, Source file and image (exe) matches. I am not sure SOS DLL can help you with Postmortem debugging. But have a look at it[^]
-Sarath.
My blog - Reflections of my thoughts
Rate the answers and close your posts if it's answered