commit | 79cd672c3dbef774d47af78825eb0c48218cf12a | [log] [tgz] |
---|---|---|
author | Juan Lang <juan_lang@yahoo.com> | Mon May 14 18:06:48 2007 -0700 |
committer | Alexandre Julliard <julliard@winehq.org> | Tue May 15 15:19:33 2007 +0200 |
tree | a97e8bac220f60491ac371ba66a6c9424020d5c0 | |
parent | 4c6988e8f0485adc79045233d762c1756ada4fff [diff] [blame] |
crypt32: Use public functions to get store access state.
diff --git a/dlls/crypt32/crl.c b/dlls/crypt32/crl.c index aa94f39..bc7f73e 100644 --- a/dlls/crypt32/crl.c +++ b/dlls/crypt32/crl.c
@@ -368,8 +368,11 @@ } else { - *(DWORD *)pvData = - CertStore_GetAccessState(pCRLContext->hCertStore); + if (pCRLContext->hCertStore) + ret = CertGetStoreProperty(pCRLContext->hCertStore, dwPropId, + pvData, pcbData); + else + *(DWORD *)pvData = 0; ret = TRUE; } break;