Commit 0444cd93 authored by Juan Lang's avatar Juan Lang Committed by Alexandre Julliard

crypt32: Don't dereference an output pointer which may be NULL.

parent 1740d9fe
...@@ -899,7 +899,8 @@ BOOL WINAPI CertAddCertificateContextToStore(HCERTSTORE hCertStore, ...@@ -899,7 +899,8 @@ BOOL WINAPI CertAddCertificateContextToStore(HCERTSTORE hCertStore,
if (existing) if (existing)
{ {
CertContext_CopyProperties(existing, pCertContext); CertContext_CopyProperties(existing, pCertContext);
*ppStoreContext = CertDuplicateCertificateContext(existing); if (ppStoreContext)
*ppStoreContext = CertDuplicateCertificateContext(existing);
} }
else else
toAdd = CertDuplicateCertificateContext(pCertContext); toAdd = CertDuplicateCertificateContext(pCertContext);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment