From 02ac300e5e39fc42ae9ecc38ec303e5f047dc8a2 Mon Sep 17 00:00:00 2001 From: vitalyster Date: Fri, 13 Dec 2013 00:25:30 +0300 Subject: [PATCH] Skype backend: do not force exit when user logged out (fixes crash) --- backends/skype/skypeplugin.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/backends/skype/skypeplugin.cpp b/backends/skype/skypeplugin.cpp index 9cd7ea58..6a0f64e7 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); } }