Details
-
Bug
-
Resolution: Done
-
P3: Somewhat important
-
4.6.0
-
None
-
Win32 (VS2005, static linking), Win32 (MinGW dynamic linking)
-
828b1299e1ecb2da23799a2e49370e00dcf9c126
Description
Getting segmentation fault after creating & destroying QApplication + QTreeView twice.
Reproducing code:
#include <QtGui/QtGui> void testQt(int argc, char** argv) { QApplication* app = new QApplication(argc, argv); QTreeView* treeView = new QTreeView(); delete treeView; delete app; } int main(int argc, char** argv) { testQt(argc, argv); testQt(argc, argv); return 0; }