Zebediah Figura : ws2_32: Don't call free_per_thread_data() on process exit.

Alexandre Julliard julliard at winehq.org
Fri Apr 30 16:03:29 CDT 2021


Module: wine
Branch: master
Commit: 2deb8c2825afcb88a9f106b73aa1f4da9253fb87
URL:    https://source.winehq.org/git/wine.git/?a=commit;h=2deb8c2825afcb88a9f106b73aa1f4da9253fb87

Author: Zebediah Figura <z.figura12 at gmail.com>
Date:   Fri Apr 30 11:38:09 2021 -0500

ws2_32: Don't call free_per_thread_data() on process exit.

It is redundant.

Signed-off-by: Zebediah Figura <z.figura12 at gmail.com>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 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;
-        free_per_thread_data();
-        break;
-    case DLL_THREAD_DETACH:
+    if (reason == DLL_THREAD_DETACH)
         free_per_thread_data();
-        break;
-    }
     return TRUE;
 }
 




More information about the wine-cvs mailing list