crypt32: Don't store a redundant copy of data in the message store.
This commit is contained in:
parent
8b17846d6a
commit
3d1ba2ab9d
|
@ -93,13 +93,6 @@ typedef struct _WINE_MEMSTORE
|
|||
struct ContextList *crls;
|
||||
} WINE_MEMSTORE, *PWINE_MEMSTORE;
|
||||
|
||||
typedef struct _WINE_MSGSTOREINFO
|
||||
{
|
||||
DWORD dwOpenFlags;
|
||||
HCERTSTORE memStore;
|
||||
HCRYPTMSG msg;
|
||||
} WINE_MSGSTOREINFO, *PWINE_MSGSTOREINFO;
|
||||
|
||||
void CRYPT_InitStore(WINECRYPT_CERTSTORE *store, DWORD dwFlags,
|
||||
CertStoreType type)
|
||||
{
|
||||
|
@ -528,12 +521,10 @@ static PWINECRYPT_CERTSTORE CRYPT_SysOpenStoreA(HCRYPTPROV hCryptProv,
|
|||
|
||||
static void WINAPI CRYPT_MsgCloseStore(HCERTSTORE hCertStore, DWORD dwFlags)
|
||||
{
|
||||
PWINE_MSGSTOREINFO store = (PWINE_MSGSTOREINFO)hCertStore;
|
||||
HCRYPTMSG msg = (HCRYPTMSG)hCertStore;
|
||||
|
||||
TRACE("(%p, %08x)\n", store, dwFlags);
|
||||
CertCloseStore(store->memStore, dwFlags);
|
||||
CryptMsgClose(store->msg);
|
||||
CryptMemFree(store);
|
||||
TRACE("(%p, %08x)\n", msg, dwFlags);
|
||||
CryptMsgClose(msg);
|
||||
}
|
||||
|
||||
static void *msgProvFuncs[] = {
|
||||
|
@ -612,23 +603,15 @@ static PWINECRYPT_CERTSTORE CRYPT_MsgOpenStore(HCRYPTPROV hCryptProv,
|
|||
}
|
||||
}
|
||||
if (ret)
|
||||
{
|
||||
PWINE_MSGSTOREINFO info = CryptMemAlloc(sizeof(WINE_MSGSTOREINFO));
|
||||
|
||||
if (info)
|
||||
{
|
||||
CERT_STORE_PROV_INFO provInfo = { 0 };
|
||||
|
||||
info->dwOpenFlags = dwFlags;
|
||||
info->memStore = memStore;
|
||||
info->msg = CryptMsgDuplicate(msg);
|
||||
provInfo.cbSize = sizeof(provInfo);
|
||||
provInfo.cStoreProvFunc = sizeof(msgProvFuncs) /
|
||||
sizeof(msgProvFuncs[0]);
|
||||
provInfo.rgpvStoreProvFunc = msgProvFuncs;
|
||||
provInfo.hStoreProv = info;
|
||||
store = CRYPT_ProvCreateStore(dwFlags, memStore,
|
||||
&provInfo);
|
||||
provInfo.hStoreProv = CryptMsgDuplicate(msg);
|
||||
store = CRYPT_ProvCreateStore(dwFlags, memStore, &provInfo);
|
||||
/* Msg store doesn't need crypto provider, so close it */
|
||||
if (hCryptProv && !(dwFlags & CERT_STORE_NO_CRYPT_RELEASE_FLAG))
|
||||
CryptReleaseContext(hCryptProv, 0);
|
||||
|
@ -636,9 +619,6 @@ static PWINECRYPT_CERTSTORE CRYPT_MsgOpenStore(HCRYPTPROV hCryptProv,
|
|||
else
|
||||
CertCloseStore(memStore, 0);
|
||||
}
|
||||
else
|
||||
CertCloseStore(memStore, 0);
|
||||
}
|
||||
TRACE("returning %p\n", store);
|
||||
return store;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue