cdb 和 Windbg 无法加载 MiniDumps,但 VS 2008 可以正常加载它们
我正在尝试构建一些自动故障转储分析,但我无法让 cdb 或 Windbg 加载我的故障转储。它们在 VS 2008 中加载得很好。
当我在文件上运行 dumpchk.exe 时,我得到:
Loading Dump File [c:\devx86\temp\ErrorDump.mdmp] User Mini Dump File: Only registers, stack and portions of memory are available ERROR: Memory range data only partially present in dump (RVA 0x1011F, size 0x94) **** DebugClient cannot open DumpFile - error 80070570 DumpFile is corrupt
当我在文件上运行 cdb 时,我得到:
ERROR: Memory range data only partially present in dump (RVA 0x1011F, size 0x94) Debuggee initialization failed, Win32 error 0n1392 "The file or directory is corrupted and unreadable."
I am trying to build some automated crash dump analysis, but I cannot get cdb or windbg to load my crash dumps. They load just fine in VS 2008.
When I run dumpchk.exe on the file, I get:
Loading Dump File [c:\devx86\temp\ErrorDump.mdmp] User Mini Dump File: Only registers, stack and portions of memory are available ERROR: Memory range data only partially present in dump (RVA 0x1011F, size 0x94) **** DebugClient cannot open DumpFile - error 80070570 DumpFile is corrupt
When I run cdb on the file, I get:
ERROR: Memory range data only partially present in dump (RVA 0x1011F, size 0x94) Debuggee initialization failed, Win32 error 0n1392 "The file or directory is corrupted and unreadable."
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
安装最新版本的工具解决了问题
Installing the latest version of the tools fixed the problem