mirror of
https://github.com/reactos/wine.git
synced 2024-11-25 04:39:45 +00:00
crypt32: Fix CertAddCRLContextToStore for CERT_STORE_ADD_USE_EXISTING add disposition.
This commit is contained in:
parent
0444cd93c4
commit
c7609f3c55
@ -1091,7 +1091,13 @@ BOOL WINAPI CertAddCRLContextToStore(HCERTSTORE hCertStore,
|
||||
break;
|
||||
case CERT_STORE_ADD_USE_EXISTING:
|
||||
if (existing)
|
||||
{
|
||||
CrlContext_CopyProperties(existing, pCrlContext);
|
||||
if (ppStoreContext)
|
||||
*ppStoreContext = CertDuplicateCRLContext(existing);
|
||||
}
|
||||
else
|
||||
toAdd = CertDuplicateCRLContext(pCrlContext);
|
||||
break;
|
||||
default:
|
||||
FIXME("Unimplemented add disposition %d\n", dwAddDisposition);
|
||||
|
Loading…
Reference in New Issue
Block a user