summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/kernel/qapplication.cpp8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/kernel/qapplication.cpp b/src/kernel/qapplication.cpp
index 2a89a90..ec01281 100644
--- a/src/kernel/qapplication.cpp
+++ b/src/kernel/qapplication.cpp
@@ -1241,9 +1241,13 @@ QApplication::~QApplication()
qDebug( "Widgets left: %i Max widgets: %i \n", QWidget::instanceCounter, QWidget::maxInstances );
}
#ifndef QT_NO_SESSIONMANAGER
- delete session_manager;
+ if ( session_manager ) {
+ delete session_manager;
+ }
session_manager = 0;
- delete session_key;
+ if ( session_key ) {
+ delete session_key;
+ }
session_key = 0;
#endif //QT_NO_SESSIONMANAGER