Module: wine Branch: master Commit: adde46f55255c4fb378ccbd75f9a8fad5d3f1c0c URL: http://source.winehq.org/git/wine.git/?a=commit;h=adde46f55255c4fb378ccbd75f...
Author: Bruno Jesus 00cpxxx@gmail.com Date: Thu Jul 3 11:18:28 2014 -0300
ws2_32: Improve WSAStartup/WSACleanup tracing.
---
dlls/ws2_32/socket.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/dlls/ws2_32/socket.c b/dlls/ws2_32/socket.c index 0e738f1..5900c8f 100644 --- a/dlls/ws2_32/socket.c +++ b/dlls/ws2_32/socket.c @@ -1238,7 +1238,7 @@ int WINAPI WSAStartup(WORD wVersionRequested, LPWSADATA lpWSAData) /* don't do anything with lpWSAData->lpVendorInfo */ /* (some apps don't allocate the space for this field) */
- TRACE("succeeded\n"); + TRACE("succeeded starts: %d\n", num_startup); return 0; }
@@ -1250,6 +1250,7 @@ INT WINAPI WSACleanup(void) { if (num_startup) { num_startup--; + TRACE("pending cleanups: %d\n", num_startup); return 0; } SetLastError(WSANOTINITIALISED);