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>
oldstable
Dmitry Timoshkov 2018-12-03 18:14:08 +03:00 committed by Alexandre Julliard
parent f4845059b6
commit ee883ff659
1 changed files with 1 additions and 1 deletions

View File

@ -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);