From fe7a5fe993dc9c1361fbf974e725451adce6eef7 Mon Sep 17 00:00:00 2001 From: Stephan Bergmann Date: Tue, 14 Mar 2017 14:49:58 +0100 Subject: loplugin:subtlezeroinit (clang-cl) Change-Id: I0a36bcf15fff74ed2f707608e04ad6596614dfd1 --- xmlsecurity/source/xmlsec/mscrypt/x509certificate_mscryptimpl.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'xmlsecurity') 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(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() ; -- cgit