mirror of
git://git.gnupg.org/gnupg.git
synced 2025-07-02 22:46:30 +02:00
w32: Silence a compiler warning in dirmngr.c
--
(cherry picked from commit 683ff00bb1
)
This commit is contained in:
parent
5eec40f3d8
commit
8bc808a98f
1 changed files with 3 additions and 3 deletions
|
@ -572,11 +572,11 @@ load_certs_from_w32_store (const char *storename)
|
|||
}
|
||||
|
||||
pCertOpenSystemStore = (CERTOPENSYSTEMSTORE)
|
||||
GetProcAddress (hCrypt32, "CertOpenSystemStoreA");
|
||||
(void*)GetProcAddress (hCrypt32, "CertOpenSystemStoreA");
|
||||
pCertEnumCertificatesInStore = (CERTENUMCERTIFICATESINSTORE)
|
||||
GetProcAddress (hCrypt32, "CertEnumCertificatesInStore");
|
||||
(void*)GetProcAddress (hCrypt32, "CertEnumCertificatesInStore");
|
||||
pCertCloseStore = (CERTCLOSESTORE)
|
||||
GetProcAddress (hCrypt32, "CertCloseStore");
|
||||
(void*)GetProcAddress (hCrypt32, "CertCloseStore");
|
||||
if ( !pCertOpenSystemStore
|
||||
|| !pCertEnumCertificatesInStore
|
||||
|| !pCertCloseStore)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue