From 4e051fc0c91a3c3ec71960dfb4dcb8bde9b3e555 Mon Sep 17 00:00:00 2001 From: Robert Adam Date: Sat, 12 Oct 2019 09:14:43 +0200 Subject: [PATCH] removed redundant workaround for https://bugreports.qt.io/browse/QTBUG-6504 in debug-mode --- src/mumble/main.cpp | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/mumble/main.cpp b/src/mumble/main.cpp index f95df0bf2..69729dcfb 100644 --- a/src/mumble/main.cpp +++ b/src/mumble/main.cpp @@ -604,10 +604,8 @@ int main(int argc, char **argv) { Global::g_global_struct = NULL; #ifndef QT_NO_DEBUG - // Hide Qt memory leak. - QSslSocket::setDefaultCaCertificates(QList()); - // Release global protobuf memory allocations. #if (GOOGLE_PROTOBUF_VERSION >= 2001000) + // Release global protobuf memory allocations. google::protobuf::ShutdownProtobufLibrary(); #endif #endif