crypt32: Pass type and flags in correct order to the find() helper.
Signed-off-by: Dmitry Timoshkov <dmitry@baikal.ru> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
f4845059b6
commit
ee883ff659
|
@ -1811,7 +1811,7 @@ PCCERT_CONTEXT WINAPI CertFindCertificateInStore(HCERTSTORE hCertStore,
|
|||
}
|
||||
|
||||
if (find)
|
||||
ret = find(hCertStore, dwFlags, dwType, pvPara, pPrevCertContext);
|
||||
ret = find(hCertStore, dwType, dwFlags, pvPara, pPrevCertContext);
|
||||
else if (compare)
|
||||
ret = cert_compare_certs_in_store(hCertStore, pPrevCertContext,
|
||||
compare, dwType, dwFlags, pvPara);
|
||||
|
|
Loading…
Reference in New Issue