From 02ac300e5e39fc42ae9ecc38ec303e5f047dc8a2 2013-12-12 22:25:30 From: vitalyster Date: 2013-12-12 22:25:30 Subject: [PATCH] Skype backend: do not force exit when user logged out (fixes crash) --- diff --git a/backends/skype/skypeplugin.cpp b/backends/skype/skypeplugin.cpp index 9cd7ea581c012ed6e459c6591dee12d9a6a239f1..6a0f64e7679f1b380169b2208e2cf94b528cafd3 100644 --- a/backends/skype/skypeplugin.cpp +++ b/backends/skype/skypeplugin.cpp @@ -150,9 +150,9 @@ void SkypePlugin::handleLogoutRequest(const std::string &user, const std::string if (skype) { LOG4CXX_INFO(logger, "User wants to logout, logging out"); skype->logout(); - Logging::shutdownLogging(); - google::protobuf::ShutdownProtobufLibrary(); - exit(1); + //Logging::shutdownLogging(); + //google::protobuf::ShutdownProtobufLibrary(); + //exit(1); } }