crypt32: Don't store redundant copy of crypto provider in file store.
This commit is contained in:
parent
065ed54f69
commit
9be5007669
|
@ -28,7 +28,6 @@ WINE_DEFAULT_DEBUG_CHANNEL(crypt);
|
||||||
typedef struct _WINE_FILESTOREINFO
|
typedef struct _WINE_FILESTOREINFO
|
||||||
{
|
{
|
||||||
DWORD dwOpenFlags;
|
DWORD dwOpenFlags;
|
||||||
HCRYPTPROV cryptProv;
|
|
||||||
HCERTSTORE memStore;
|
HCERTSTORE memStore;
|
||||||
HANDLE file;
|
HANDLE file;
|
||||||
BOOL dirty;
|
BOOL dirty;
|
||||||
|
@ -182,7 +181,6 @@ PWINECRYPT_CERTSTORE CRYPT_FileOpenStore(HCRYPTPROV hCryptProv, DWORD dwFlags,
|
||||||
CERT_STORE_PROV_INFO provInfo = { 0 };
|
CERT_STORE_PROV_INFO provInfo = { 0 };
|
||||||
|
|
||||||
info->dwOpenFlags = dwFlags;
|
info->dwOpenFlags = dwFlags;
|
||||||
info->cryptProv = hCryptProv;
|
|
||||||
info->memStore = memStore;
|
info->memStore = memStore;
|
||||||
info->file = file;
|
info->file = file;
|
||||||
info->dirty = FALSE;
|
info->dirty = FALSE;
|
||||||
|
|
Loading…
Reference in New Issue