vote up 0 vote down star

I am building a Qt 4.5 application on Windows using Visual Studio 2008. Whenever I run my application in Debug mode and then close it, Visual Studio prints the following to the output pane:

Detected memory leaks!
Dumping objects ->
{696512} normal block at 0x01981AB0, 24 bytes long.
Data: < > 00 CD CD CD 00 00 00 00 00 00 00 00 00 00 00 00
{696511} normal block at 0x02E59B70, 12 bytes long.
Data: < U2g U2g> B0 1A 98 01 E8 55 32 67 E8 55 32 67

And the output reports hundreds of such blocks. I have noticed this particularly when using Qt 4's Model/View framework. Does Qt in fact have memory leaks, or are there circumstances under which Visual Studio misreports leaks?

flag
4  
There might also be the possibility that your code has memory leaks... – sth Jun 17 at 17:38
Are you freeing every allocated resource or are you just letting the process exit (in which case the leak is by design - typically for performance reasons)? – Bubbafat Jun 17 at 17:45
One of the memory "gotcha"s I've seen get people is that models aren't owned by the view. It wouldn't make sense to have them owned by the view in most cases, but if you don't think about it, you might be believing that setting a model for a view sets the view to be the model's parent. This could be causing memory leaks. – cjhuitt Jun 17 at 18:45
@sth: This is certainly possible. :) However, Qt has its own memory management mechanism which I use extensively throughout the application. Essentially, when a new QObject-based class is instantiated, you pass another QObject/QWidget (two common base classes in Qt) to its constructor as the new object's parent. Once the parent's destructor is called, it calls the destructor for all of its children. Here are the details: doc.trolltech.com/4.5/objecttrees.html – Krsna Jun 18 at 13:36

4 Answers

vote up 1 vote down

Make sure you're using dynamic memory in Qt-way, e.g.

#include <QObject>
#include <QString>

class MyClass : public QObject
{
public: 
MyClass (const QString& text, QObject *parent = 0);
...
};


int main()
{
QObject parent;
MyClass *a;
a = new MyClass ("foo", &parent);
...
}

(c) Johan Thelin, "Foundations of Qt Development"

link|flag
@MadH: Yes, I have properly parented all Qt objects as you mentioned. For classes that don't inherit QObject, I use Boost smart pointers. So I have only a handful of objects whose memory I'm managing myself. – Krsna Jun 18 at 13:28
@Krsna then it would be interesting to know the answer ;-) – MadH Jun 24 at 16:08
vote up 1 vote down

The memory leak info is provided by the debug windows runtime. Your program can interact and configure this.

The number in braces {696512} is the allocation order number. If this number is always the same, then you can set a break point on this allocation by passing the number to _CrtSetBreakAlloc. Run the program in the debugger again and the debugger will stop when the leaked memory is allocated.

Call this function early in main. If the number is not always the same, try to reproduce the memory leak with reduced code until it is always the same.

For more information see Memory Leak Detection Enabling

link|flag
vote up 0 vote down check

I had a chance to profile my project using DevPartner. The surprising thing is that it reports memory leaks in QtGuid4.dll and QtCored4.dll; however, after manually looking at each case, I discovered that they were all false positives.

As a side note, there were no memory leaks reported in the code using Qt.

link|flag
vote up 0 vote down

I think this happens when the memory leak detector is checking for leaks before QT does it's cleanup. I fixed this problem by moving my qtmaind.lib, QtCored4.lib, QtGuid4.lib, QtOpenGLd4.lib, etc to the bottom of the linker dependencies box in VS's project settings dialog.

link|flag

Your Answer

Get an OpenID
or

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