Andrew Talbot : cryptdll: Remove unused variable.

Alexandre Julliard julliard at winehq.org
Fri Nov 23 12:53:23 CST 2012


Module: wine
Branch: master
Commit: 6b43027c7e9cb6a5d1bb3a7f675d1d7400f68347
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=6b43027c7e9cb6a5d1bb3a7f675d1d7400f68347

Author: Andrew Talbot <andrew.talbot at talbotville.com>
Date:   Thu Nov 22 21:01:54 2012 +0000

cryptdll: Remove unused variable.

---

 dlls/cryptdll/cryptdll.c |    3 ---
 1 files changed, 0 insertions(+), 3 deletions(-)

diff --git a/dlls/cryptdll/cryptdll.c b/dlls/cryptdll/cryptdll.c
index 72fcf68..c30046f 100644
--- a/dlls/cryptdll/cryptdll.c
+++ b/dlls/cryptdll/cryptdll.c
@@ -25,8 +25,6 @@
 
 WINE_DEFAULT_DEBUG_CHANNEL(cryptdll);
 
-static HMODULE CRYPTDLL_hModule;
-
 BOOL WINAPI DllMain (HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved)
 {
     TRACE("%p,%x,%p\n", hinstDLL, fdwReason, lpvReserved);
@@ -37,7 +35,6 @@ BOOL WINAPI DllMain (HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved)
         case DLL_PROCESS_ATTACH:
         {
             DisableThreadLibraryCalls(hinstDLL);
-            CRYPTDLL_hModule = hinstDLL;
             break;
         }
         case DLL_PROCESS_DETACH:




More information about the wine-cvs mailing list