From d080626c63aad1b991331a36c01f9aa409fd7782 Mon Sep 17 00:00:00 2001 From: Michael Hansen Date: Fri, 4 Jan 2013 00:42:36 -0800 Subject: [PATCH] Yes, we really do want to wait for the transactions to get cleaned up before terminating the loop that cleans them up (fixes NetTrans leaks) --- Sources/Plasma/PubUtilLib/plNetClientComm/plNetClientComm.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Sources/Plasma/PubUtilLib/plNetClientComm/plNetClientComm.cpp b/Sources/Plasma/PubUtilLib/plNetClientComm/plNetClientComm.cpp index d7cad66a..1e70ac2b 100644 --- a/Sources/Plasma/PubUtilLib/plNetClientComm/plNetClientComm.cpp +++ b/Sources/Plasma/PubUtilLib/plNetClientComm/plNetClientComm.cpp @@ -785,7 +785,7 @@ void NetCommShutdown () { if (!gDataServerLocal) NetCliFileDisconnect(); - NetClientDestroy(false); + NetClientDestroy(); AsyncCoreDestroy(30 * 1000); }