[PATCH v3 5/5] ws2_32: Don't call free_per_thread_data() on process exit.

Zebediah Figura z.figura12 at gmail.com
Fri Apr 30 11:38:09 CDT 2021


It is redundant.

Signed-off-by: Zebediah Figura <z.figura12 at gmail.com>
---
 dlls/ws2_32/socket.c | 14 ++------------
 1 file changed, 2 insertions(+), 12 deletions(-)

diff --git a/dlls/ws2_32/socket.c b/dlls/ws2_32/socket.c
index cc8e2dd30f0..c2069198938 100644
--- a/dlls/ws2_32/socket.c
+++ b/dlls/ws2_32/socket.c
@@ -1514,20 +1514,10 @@ static void free_per_thread_data(void)
 /***********************************************************************
  *		DllMain (WS2_32.init)
  */
-BOOL WINAPI DllMain(HINSTANCE hInstDLL, DWORD fdwReason, LPVOID fImpLoad)
+BOOL WINAPI DllMain( HINSTANCE instance, DWORD reason, void *reserved )
 {
-    TRACE("%p 0x%x %p\n", hInstDLL, fdwReason, fImpLoad);
-    switch (fdwReason) {
-    case DLL_PROCESS_ATTACH:
-        break;
-    case DLL_PROCESS_DETACH:
-        if (fImpLoad) break;
+    if (reason == DLL_THREAD_DETACH)
         free_per_thread_data();
-        break;
-    case DLL_THREAD_DETACH:
-        free_per_thread_data();
-        break;
-    }
     return TRUE;
 }
 
-- 
2.30.2




More information about the wine-devel mailing list