Commit 6b43027c authored by Andrew Talbot's avatar Andrew Talbot Committed by Alexandre Julliard

cryptdll: Remove unused variable.

parent 5ca89eaf
......@@ -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:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment