diff options
author | Kirill Volinsky <mataes2007@gmail.com> | 2015-04-30 06:34:32 +0000 |
---|---|---|
committer | Kirill Volinsky <mataes2007@gmail.com> | 2015-04-30 06:34:32 +0000 |
commit | cf45ff050dad2570c3172e111d739a3ae11a9ec1 (patch) | |
tree | 9322aa6d5f2cd848074216f0f2321ef55f8287bd /plugins/SecureIM/src/main.cpp | |
parent | 2ebe714aaa6004ba617f04d2d11b4e5a763c1074 (diff) |
minus critical section
git-svn-id: http://svn.miranda-ng.org/main/trunk@13277 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/SecureIM/src/main.cpp')
-rw-r--r-- | plugins/SecureIM/src/main.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/plugins/SecureIM/src/main.cpp b/plugins/SecureIM/src/main.cpp index 8abf787e46..a70e7c6611 100644 --- a/plugins/SecureIM/src/main.cpp +++ b/plugins/SecureIM/src/main.cpp @@ -308,7 +308,6 @@ extern "C" __declspec(dllexport) int __cdecl Load(void) mir_getLP(&pluginInfoEx);
DisableThreadLibraryCalls(g_hInst);
- InitializeCriticalSection(&localQueueMutex);
char temp[MAX_PATH];
GetTempPath(sizeof(temp), temp);
@@ -389,7 +388,6 @@ extern "C" __declspec(dllexport) int __cdecl Load(void) extern "C" __declspec(dllexport) int __cdecl Unload()
{
- DeleteCriticalSection(&localQueueMutex);
freelib();
return 0;
}
|