diff options
author | Remko Tronçon <git@el-tramo.be> | 2010-12-27 14:10:29 (GMT) |
---|---|---|
committer | Remko Tronçon <git@el-tramo.be> | 2010-12-27 14:10:29 (GMT) |
commit | cd9c5b8d87aaae48a058ae8d498bc81d0fed82ad (patch) | |
tree | 653077dbad716ed03052facd45fcdfc5bb182b86 /Swiften/TLS/OpenSSL | |
parent | ff700194d1d6e8e347a50912de9320f9c3d463bb (diff) | |
download | swift-cd9c5b8d87aaae48a058ae8d498bc81d0fed82ad.zip swift-cd9c5b8d87aaae48a058ae8d498bc81d0fed82ad.tar.bz2 |
Avoid more valgrind warnings.
Diffstat (limited to 'Swiften/TLS/OpenSSL')
-rw-r--r-- | Swiften/TLS/OpenSSL/OpenSSLContext.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Swiften/TLS/OpenSSL/OpenSSLContext.cpp b/Swiften/TLS/OpenSSL/OpenSSLContext.cpp index e922f2d..be2f0af 100644 --- a/Swiften/TLS/OpenSSL/OpenSSLContext.cpp +++ b/Swiften/TLS/OpenSSL/OpenSSLContext.cpp @@ -70,7 +70,8 @@ void OpenSSLContext::ensureLibraryInitialized() { OpenSSL_add_all_algorithms(); // Disable compression - /*STACK_OF(SSL_COMP)* compressionMethods = SSL_COMP_get_compression_methods(); + /* + STACK_OF(SSL_COMP)* compressionMethods = SSL_COMP_get_compression_methods(); sk_SSL_COMP_zero(compressionMethods);*/ isLibraryInitialized = true; |