I'm looking for free memory leak detector for Qt. I use Qt Creator 1.3 with Qt version 4.6 (32 bit). The platform is Windows 7 Ultimate.

Thanks.

link|improve this question

feedback

3 Answers

up vote 1 down vote accepted

Although this question is not Qt-specific, the answers do refer to various general-purpose memory leak detection tools which are available on Windows. The two which are mentioned in the accepted answer are commercial tools, but there are some free alternatives referred to in other answers.

link|improve this answer
feedback

I'm not sure about Qt in particular, but I use Valgrind for memory-leak tracking.

EDIT: Valgrind doesn't work on Windows, so this doesn't actually answer the question.

link|improve this answer
-1 since the OP stated that the platform is Windows, for which Valgrind is not available. Have posted a link to another question which refers to memory leak detection tools on Windows specifically. – Gareth Stockwell May 2 '10 at 22:20
It's not? :) Sorry - I assumed it was. – Lucas Jones May 2 '10 at 23:03
feedback

I have used Valgrind on a major graphical Qt product. Like any software tool it takes serious effort to learn how to use it and configure it efficiently. I am still a newbie at using it really but I find it very useful and beneficial to find memory issues. It can slow the debugged program to a very noticeable extent. I still recommend it though.

The lack of a memory debugging mechanism in Qt is a somewhat surprising omission for a commercial C++ framework.

link|improve this answer
-1 since the OP stated that the platform is Windows, for which Valgrind is not available. Have posted a link to another question which refers to memory leak detection tools on Windows specifically. – Gareth Stockwell May 2 '10 at 22:21
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.