diff options
Diffstat (limited to 'cpp/src')
-rw-r--r-- | cpp/src/IceSSL/SecureTransportCertificateI.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/src/IceSSL/SecureTransportCertificateI.cpp b/cpp/src/IceSSL/SecureTransportCertificateI.cpp index fced1cc0fed..faa097a4535 100644 --- a/cpp/src/IceSSL/SecureTransportCertificateI.cpp +++ b/cpp/src/IceSSL/SecureTransportCertificateI.cpp @@ -440,7 +440,7 @@ SecureTransportCertificateI::getAuthorityKeyIdentifier() const if(property) { CFTypeRef type = 0; - CFTypeRef value; + CFTypeRef value = 0; if(CFDictionaryGetValueIfPresent(property.get(), kSecPropertyKeyType, &type)) { if(CFEqual(type, kSecPropertyTypeSection)) @@ -479,7 +479,7 @@ SecureTransportCertificateI::getSubjectKeyIdentifier() const if(property) { CFTypeRef type = 0; - CFTypeRef value; + CFTypeRef value = 0; if(CFDictionaryGetValueIfPresent(property.get(), kSecPropertyKeyType, &type)) { if(CFEqual(type, kSecPropertyTypeSection)) |