Hello,

this is the scenario:
- VStudio2005, using Qt4.7.2, built for VS2005 (dumpbin -imports on the Qt libs refering to VS80 libs)
- I build another dll which links QtXml4.dll

THIS method is creating memory leaks:

Qt Code:
  1. int CTestClass::blubber( int iBlubber )
  2. {
  3. QDomElement aRoot;
  4. aRoot.tagName();
  5. return 0;
  6. }
To copy to clipboard, switch view to plain text mode 

and THE SAME method with commented tagName() is NOT creating memory leaks:
Qt Code:
  1. int ARGOSXml_DomParser::blubber( int iBlubber )
  2. {
  3. QDomElement aRoot;
  4. // aRoot.tagName();
  5. return 0;
  6. }
To copy to clipboard, switch view to plain text mode 

NOTE: I do NOT call this method! just linking!

I am really helpless... perhaps anyone got an idea!

If you need more information, please ask!

Any help is appreciated!
saracaeus