diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2017-03-14 14:49:58 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2017-03-14 14:49:58 +0100 |
commit | fe7a5fe993dc9c1361fbf974e725451adce6eef7 (patch) | |
tree | 3f0282119c08bde8a0d6c105fdf727da3e7ef4b1 /xmlsecurity | |
parent | 2789a8c202151fc8ce3cc3c220513200d67e8b07 (diff) |
loplugin:subtlezeroinit (clang-cl)
Change-Id: I0a36bcf15fff74ed2f707608e04ad6596614dfd1
Diffstat (limited to 'xmlsecurity')
-rw-r--r-- | xmlsecurity/source/xmlsec/mscrypt/x509certificate_mscryptimpl.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/xmlsecurity/source/xmlsec/mscrypt/x509certificate_mscryptimpl.cxx b/xmlsecurity/source/xmlsec/mscrypt/x509certificate_mscryptimpl.cxx index b468bf109a25..29e6d1d06a2f 100644 --- a/xmlsecurity/source/xmlsec/mscrypt/x509certificate_mscryptimpl.cxx +++ b/xmlsecurity/source/xmlsec/mscrypt/x509certificate_mscryptimpl.cxx @@ -381,7 +381,7 @@ css::uno::Sequence< css::uno::Reference< css::security::XCertificateExtension > if ( objId == "2.5.29.17" ) xExtn = reinterpret_cast<CertificateExtension_XmlSecImpl*>(new SanExtensionImpl()); else - xExtn = new CertificateExtension_XmlSecImpl() ; + xExtn = new CertificateExtension_XmlSecImpl; if( xExtn == nullptr ) throw RuntimeException() ; @@ -406,7 +406,7 @@ css::uno::Reference< css::security::XCertificateExtension > SAL_CALL X509Certifi //TODO: Compare the oid if( false ) { - xExtn = new CertificateExtension_XmlSecImpl() ; + xExtn = new CertificateExtension_XmlSecImpl; if( xExtn == nullptr ) throw RuntimeException() ; |