From 7c0bc39229bbba839dea93fe12b0d2cdbe21eec0 Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Thu, 15 Aug 2013 15:41:06 -0500 Subject: Fix crash on exit when application does not use session management This relates to Bug 1627 --- src/kernel/qapplication.cpp | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'src') 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 -- cgit v1.2.3