From b3b34cacbdf503c3efe3fde74a902e36ca049429 Mon Sep 17 00:00:00 2001 From: Christian Muehlhaeuser Date: Fri, 13 Jul 2012 08:06:59 +0200 Subject: [PATCH] * Try not deleting the infoSystem on shutdown. Does it fix Windows crashes? --- src/TomahawkApp.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/TomahawkApp.cpp b/src/TomahawkApp.cpp index 959092e4b..361b9ac81 100644 --- a/src/TomahawkApp.cpp +++ b/src/TomahawkApp.cpp @@ -399,8 +399,8 @@ TomahawkApp::~TomahawkApp() delete Pipeline::instance(); tLog() << "Deleting InfoSystem"; - if ( !m_infoSystem.isNull() ) - delete m_infoSystem.data(); +/* if ( !m_infoSystem.isNull() ) + delete m_infoSystem.data();*/ tLog() << "Finished shutdown."; }