I am running a release version of an executable (built with Visual Studio 2005) in a production environment. We are getting a page fault exception and the dump gives an address. How do I translate this address to the line of code within Visual Studio 2005? Do I need to be running a Debug build?
Asked
Active
Viewed 98 times
0
-
What about this issue? Do you get any latest information about this issue in your side? – Jack Zhai Dec 22 '17 at 06:32
1 Answers
0
What I know is that if we want to really get the line number which threw the Exception, we need to have the full dump file like the matched PDB file or others.
You can also use the Windbg tool and command line:
Reference:
is it possible to get the line from which the exception was thrown from a dump?
Note: Since VS 2005 is really old version, we also have no this Environment now, if possible, maybe you could use higher VS version like VS2015/VS2017.

Jack Zhai
- 6,230
- 1
- 12
- 20