summaryrefslogtreecommitdiff
path: root/comphelper
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2020-08-24 16:47:25 +0100
committerCaolán McNamara <caolanm@redhat.com>2020-08-24 21:44:01 +0200
commit81b807b43fe4a7d3be315565e9d76a45c5cd5d18 (patch)
treeb99b5d6ed2ad181f601ac0a0c4eaaee145990dc9 /comphelper
parent2771a7929158cbeed9df6b51f4684da471c9cb04 (diff)
NullToPointer ValueDependentIsNotNull GNUNull -> nullptr [loplugin:nullptr]
Change-Id: I93efe23af18c622123ddc3feb41a43a485ee2722 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/101285 Tested-by: Jenkins Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'comphelper')
-rw-r--r--comphelper/source/misc/hash.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/comphelper/source/misc/hash.cxx b/comphelper/source/misc/hash.cxx
index 6b54ed0a2452..67b79c1af8a0 100644
--- a/comphelper/source/misc/hash.cxx
+++ b/comphelper/source/misc/hash.cxx
@@ -84,7 +84,7 @@ struct HashImpl
HASH_Begin(mpContext);
#elif USE_TLS_OPENSSL
mpContext = EVP_MD_CTX_create();
- EVP_DigestInit_ex(mpContext, getOpenSSLType(), NULL);
+ EVP_DigestInit_ex(mpContext, getOpenSSLType(), nullptr);
#endif
}