Any free memory leak detector for Qt?

I'm looking for a free memory leak detector for Qt

. I am using Qt Creator 1.3

with Qt version 4.6 (32 bit)

. Platform Windows 7 Ultimate

.

Thanks.

+2


a source to share


3 answers


While this question is not specific to Qt, the answers relate to various general purpose leak detection tools that are available on Windows. Two of them mentioned in the accepted answer are commercial tools, but there are some free alternatives mentioned in other answers.



+2


a source


I'm not sure about the specifics of Qt, but I use Valgrind to track memory leaks.



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

0


a source


I have used Valgrind in the main graphics product Qt. Like any software tool, it takes a lot of effort to learn how to use it and customize it effectively. I am still new to use, but I find it very helpful and helpful to find memory issues. This can slow down the debug program to a very noticeable extent. I still recommend it.

Qt's lack of a memory debugging mechanism is a somewhat unexpected omission for the commercial C ++ platform.

-1


a source







All Articles