crypt32: Don't store redundant copy of crypto provider in file store.

This commit is contained in:
Juan Lang 2007-08-17 11:58:48 -07:00 committed by Alexandre Julliard
parent 065ed54f69
commit 9be5007669
1 changed files with 0 additions and 2 deletions

View File

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