On closing a Qt 4.5 application, Visual Studio reports that it has detected memory leaks - Stack Overflow most recent 30 from stackoverflow.com 2009-12-04T10:25:42Z http://stackoverflow.com/feeds/question/1008514 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1008514/on-closing-a-qt-4-5-application-visual-studio-reports-that-it-has-detected-memor 0 On closing a Qt 4.5 application, Visual Studio reports that it has detected memory leaks Krsna 2009-06-17T17:36:05Z 2009-09-04T12:37:33Z <p>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:</p> <blockquote> <p>Detected memory leaks!<br/> Dumping objects -><br/> {696512} normal block at 0x01981AB0, 24 bytes long.<br/> Data: &lt; > 00 CD CD CD 00 00 00 00 00 00 00 00 00 00 00 00 <br/> {696511} normal block at 0x02E59B70, 12 bytes long.<br/> Data: &lt; U2g U2g> B0 1A 98 01 E8 55 32 67 E8 55 32 67</p> </blockquote> <p>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?</p> http://stackoverflow.com/questions/1008514/on-closing-a-qt-4-5-application-visual-studio-reports-that-it-has-detected-memor/1011503#1011503 1 Answer by MadH for On closing a Qt 4.5 application, Visual Studio reports that it has detected memory leaks MadH 2009-06-18T08:37:25Z 2009-06-18T08:37:25Z <p>Make sure you're using dynamic memory in Qt-way, e.g.</p> <pre><code>#include &lt;QObject&gt; #include &lt;QString&gt; class MyClass : public QObject { public: MyClass (const QString&amp; text, QObject *parent = 0); ... }; int main() { QObject parent; MyClass *a; a = new MyClass ("foo", &amp;parent); ... } </code></pre> <p>(c) Johan Thelin, "Foundations of Qt Development"</p> http://stackoverflow.com/questions/1008514/on-closing-a-qt-4-5-application-visual-studio-reports-that-it-has-detected-memor/1013925#1013925 1 Answer by iain for On closing a Qt 4.5 application, Visual Studio reports that it has detected memory leaks iain 2009-06-18T17:04:06Z 2009-06-18T17:04:06Z <p>The memory leak info is provided by the debug windows runtime. Your program can interact and configure this.</p> <p>The number in braces <code>{696512}</code> 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 <a href="http://msdn.microsoft.com/en-us/library/4wth1ha5%28VS.80%29.aspx" rel="nofollow"><code>_CrtSetBreakAlloc</code></a>. Run the program in the debugger again and the debugger will stop when the leaked memory is allocated.</p> <p>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.</p> <p>For more information see <a href="http://msdn.microsoft.com/en-us/library/e5ewb1h3%28VS.80%29.aspx" rel="nofollow">Memory Leak Detection Enabling</a> </p> http://stackoverflow.com/questions/1008514/on-closing-a-qt-4-5-application-visual-studio-reports-that-it-has-detected-memor/1188838#1188838 0 Answer by Krsna for On closing a Qt 4.5 application, Visual Studio reports that it has detected memory leaks Krsna 2009-07-27T15:26:55Z 2009-07-27T15:26:55Z <p>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.</p> <p>As a side note, there were no memory leaks reported in the code using Qt.</p> http://stackoverflow.com/questions/1008514/on-closing-a-qt-4-5-application-visual-studio-reports-that-it-has-detected-memor/1378969#1378969 0 Answer by unknown (google) for On closing a Qt 4.5 application, Visual Studio reports that it has detected memory leaks unknown (google) 2009-09-04T12:37:33Z 2009-09-04T12:37:33Z <p>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.</p>