查找内存违规/泄漏

发布于 2024-10-07 12:14:37 字数 303 浏览 2 评论 0原文

我有一个在 VC 2008 (C++) 中开发的应用程序,它使用 axis dll,而 axis dll 使用 openssl dll。并且链中的某个人破坏了堆 - 这种情况最终导致我的应用程序中不应该/不可能发生违规的地方出现“内存访问违规”。因此,axis-ssl 链中的某个人损坏了某些东西,但我找不到谁或什么。

我尝试使用 DevPartner 的内存泄漏工具,但它没有发现泄漏 - 没有任何东西。

我应该如何解决这个问题?我多次查看 axis 和 ssl 文档,并实施和检查所有可能的内存管理问题和修复,但无济于事。

非常感谢! 马林

I have an application developed in VC 2008 (C++) which uses axis dlls, which use openssl dlls. And someone in the chain corrupts heap - a situation which ends up giving me "memory access violation" in my application in places where violation shouldn't/couldn't happen. So, someone in the chain axis-ssl corrupts something, but I cannot find who or what.

I tried using DevPartner's tool for memory leaks, but it finds no leaks - no anything.

How should I approach this problem? I looked over axis and ssl documentation a number of times, and implemented and checked all possible memory management issues and fixes, but to no avail.

Thank you very much!
Marin

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

溺ぐ爱和你が 2024-10-14 12:14:37

尝试使用 MS 应用程序验证程序。它与 Visual Studio 集成,因此您可以直接从它运行“验证”。

Try using MS application verifier. It integrates with Visual Studio, so you can make "verified" run directly from it.

等待圉鍢 2024-10-14 12:14:37

您为什么认为泄密可能在某种程度上导致腐败?您需要注意越界访问、死指针访问、非法强制转换以及类似的情况,而不是泄漏。这是一件很棘手的事情。 Valgrind 是解决此类问题的一个很好的工具,但不幸的是它不适用于 Win32。如果您的代码是可移植的,您可以尝试在 Linux 上调试它,否则您要么需要使用 Purify 等商业工具,要么采用良好的旧方法,借助日志记录和断言,当然还有调试器。

Why do you think a leak could be somehow responsible for a corruption? You'd need to watch out for out-of-bounds access, dead pointer access, illegal casts and things like that, not for a leak. It's a tricky thing to do. Valgrind is a great tool for chasing this sort of issues, but unfortunately it's not available for Win32. If your code is portable, you could try debugging it on Linux, otherwise you'd either need to use commercial tools like Purify, or do it the good old way, with a help of logging and assertions, and a debugger of course.

温馨耳语 2024-10-14 12:14:37

如果您获得库的调试版本,MSVC 提供调试 malloc 和 free,以及调试 new 和删除。其中包含诸如覆盖检测之类的内容。

http://msdn.microsoft.com/en-us/library/bebs9zyz.aspx

If you get the debug versions of the libraries, MSVC offers a debug malloc and free, as well as a debug new and delete. These contain things like overwrite detection.

http://msdn.microsoft.com/en-us/library/bebs9zyz.aspx

无戏配角 2024-10-14 12:14:37

也许这篇 MSDN 文章可能有您正在寻找的答案:
查找内存泄漏

你也可以尝试这个LeakDiag 工具。不确定为什么 MSDN 中没有提及它?!?!?但是 Codeproject.com 中有一篇简洁的文章

May be this MSDN article might have the answers you are looking for:
Finding a Memory Leak

Also you could try this LeakDiag tool. Not sure as to why there is no reference to it in MSDN?!?!? But there is a neat article in Codeproject.com

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文