crypt32(3/4): Don't store redundant copy of crypto provider in file store

Juan Lang juan.lang at gmail.com
Fri Aug 17 14:03:50 CDT 2007


--Juan
-------------- next part --------------
From 97fa1104e10d90539fd27044ca2b8c4f5ec6baf9 Mon Sep 17 00:00:00 2001
From: Juan Lang <juan.lang at gmail.com>
Date: Fri, 17 Aug 2007 11:58:48 -0700
Subject: [PATCH] Don't store redundant copy of crypto provider in file store
---
 dlls/crypt32/filestore.c |    2 --
 1 files changed, 0 insertions(+), 2 deletions(-)

diff --git a/dlls/crypt32/filestore.c b/dlls/crypt32/filestore.c
index 07ab6f1..45becca 100644
--- a/dlls/crypt32/filestore.c
+++ b/dlls/crypt32/filestore.c
@@ -28,7 +28,6 @@ WINE_DEFAULT_DEBUG_CHANNEL(crypt);
 typedef struct _WINE_FILESTOREINFO
 {
     DWORD      dwOpenFlags;
-    HCRYPTPROV cryptProv;
     HCERTSTORE memStore;
     HANDLE     file;
     BOOL       dirty;
@@ -182,7 +181,6 @@ PWINECRYPT_CERTSTORE CRYPT_FileOpenStore
                     CERT_STORE_PROV_INFO provInfo = { 0 };
 
                     info->dwOpenFlags = dwFlags;
-                    info->cryptProv = hCryptProv;
                     info->memStore = memStore;
                     info->file = file;
                     info->dirty = FALSE;
-- 
1.4.1


More information about the wine-patches mailing list