diff options
| -rw-r--r-- | Swiften/TLS/SecureTransport/SecureTransportContext.mm | 15 | 
1 files changed, 13 insertions, 2 deletions
| diff --git a/Swiften/TLS/SecureTransport/SecureTransportContext.mm b/Swiften/TLS/SecureTransport/SecureTransportContext.mm index a702cde..2357579 100644 --- a/Swiften/TLS/SecureTransport/SecureTransportContext.mm +++ b/Swiften/TLS/SecureTransport/SecureTransportContext.mm @@ -72,12 +72,23 @@ CFArrayRef CreateClientCertificateChainAsCFArrayRef(CertificateWithKey::ref key)  			break;  		case errSecAuthFailed:  			// Password did not work for decoding the certificate. +			SWIFT_LOG(warning) << "Invalid password." << std::endl; +			break;  		case errSecDecode:  			// Other decoding error. +			SWIFT_LOG(warning) << "PKCS12 decoding error." << std::endl; +			break;  		default: -			CFRelease(certChain); +			SWIFT_LOG(warning) << "Unknown error." << std::endl; +	} +	 +	if (securityError != errSecSuccess) { +		if (items) {  			CFRelease(items); -			certChain = NULL; +			items = NULL; +		} +		CFRelease(certChain); +		certChain = NULL;  	}  	if (certChain) { | 
 Swift
 Swift