Module: wine Branch: master Commit: 1626da2bbaacb5aefc71f9281f025bfd7ccb33c7 URL: http://source.winehq.org/git/wine.git/?a=commit;h=1626da2bbaacb5aefc71f9281f...
Author: Juan Lang juan.lang@gmail.com Date: Wed Aug 15 16:22:43 2007 -0700
crypt32: Free default chain engine.
---
dlls/crypt32/crypt32_private.h | 1 + dlls/crypt32/main.c | 1 + 2 files changed, 2 insertions(+), 0 deletions(-)
diff --git a/dlls/crypt32/crypt32_private.h b/dlls/crypt32/crypt32_private.h index a7bd2b3..9104b98 100644 --- a/dlls/crypt32/crypt32_private.h +++ b/dlls/crypt32/crypt32_private.h @@ -126,6 +126,7 @@ HCRYPTPROV CRYPT_GetDefaultProvider(void); void crypt_oid_init(HINSTANCE hinst); void crypt_oid_free(void); void crypt_sip_free(void); +void default_chain_engine_free(void);
/* Some typedefs that make it easier to abstract which type of context we're * working with. diff --git a/dlls/crypt32/main.c b/dlls/crypt32/main.c index 72bdfac..aec288d 100644 --- a/dlls/crypt32/main.c +++ b/dlls/crypt32/main.c @@ -44,6 +44,7 @@ BOOL WINAPI DllMain(HINSTANCE hInstance, DWORD fdwReason, PVOID pvReserved) case DLL_PROCESS_DETACH: crypt_oid_free(); crypt_sip_free(); + default_chain_engine_free(); if (hDefProv) CryptReleaseContext(hDefProv, 0); break; }