What is the “Break instruction exception” in WinDbg?

后端 未结 2 2031
温柔的废话
温柔的废话 2021-02-01 05:49

I\'m debugging some random crash bugs, but actually very difficult to go deep into. Because when i open crash dump, only find one error:

0:000> .exr -1
Excep         


        
2条回答
  •  星月不相逢
    2021-02-01 06:32

    The command to use to find the exception that caused the crash dump is .ecxr. The outpt you got from .exr -1 is incorrect as the ExceptionAddress is zero.

提交回复
热议问题