abelenky
abelenky

Reputation: 64730

Exceptions in crash-dumps

I have a Crash Dump from a Windows Executable (a .DMP file that opens well in WinDbg).

While I can read the stack, interpret some of the registers, and examine heap memory, I suspect there is an unhandled exception in play here as well.

What does an exception "look like" in memory?
Is it certain values in registers, or a certain state of the stack?
How do I find this and interpret it?

Upvotes: 1

Views: 138

Answers (1)

gbjbaanb
gbjbaanb

Reputation: 52689

type .ecxr to get the current exception displayed - it jumps to the source code, and call stack.

I thought it did it automatically, but that could just be the way I have it set up.

Upvotes: 1

Related Questions