如何修复由于堆损坏导致的错误

时间:2011-12-22 16:27:24

标签: c++ memory heap

当我的应用程序崩溃时,我有以下callstak(使用k命令通过MSVC210保存转储功能和winbdg第二次创建):

0012c720 7d684c89 0012c93c 7d656a16 063acab8 ntdll!DbgBreakPoint
0012c728 7d656a16 063acab8 0000035c 035f0000 ntdll!RtlpBreakPointHeap+0x28
0012c93c 7d685892 035f0000 50000161 0000035c ntdll!RtlAllocateHeapSlowly+0x231
0012c9b0 7d65695e 035f0000 50000161 0000035c ntdll!RtlDebugAllocateHeap+0xaf
0012cbcc 7d62ba89 035f0000 40000060 0000035c ntdll!RtlAllocateHeapSlowly+0x41
0012cdfc 10308343 035f0000 40000060 0000035c ntdll!RtlAllocateHeap+0xe9f
0012ce14 1031697c 0000035c c8fa7bd5 0012deb0 MSVCR100D!_heap_alloc_base+0x53
0012ce5c 1031671f 00000338 00000001 00000000 MSVCR100D!_nh_malloc_dbg+0x2dc
0012ce7c 103166cc 00000338 00000000 00000001 MSVCR100D!_nh_malloc_dbg+0x7f
0012cea4 10319c5b 00000338 00000000 00000001 MSVCR100D!_nh_malloc_dbg+0x2c
0012cec4 10307db1 00000338 04f26388 0012cfac MSVCR100D!malloc+0x1b
0012cee0 65302a58 00000338 c8876569 00000070 MSVCR100D!operator new+0x11

这似乎是由于堆损坏。

我不知道如何或在我的代码中寻找什么来修复错误..

有没有最佳做法来修复这个王og bug?

非常感谢

1 个答案:

答案 0 :(得分:4)

堆损坏可能是由于多种原因造成的,并且很难通过代码分析来检测这些代码。最好的方法是:

通过 Valgrind Rational Purifyplus 或任何此类内存分析工具运行代码,他们将帮助您确定错误的内容并指出它给你。

看看:
How to debug heap corruption errors?

了解您可以使用的其他内存分析工具。