From b0b0895234ee50dba6558822ffb7a1577f240e4e Mon Sep 17 00:00:00 2001 From: George Hazan Date: Tue, 30 Aug 2016 10:31:04 +0000 Subject: stupid bug with calling FreeLibrary several times git-svn-id: http://svn.miranda-ng.org/main/trunk@17216 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- protocols/JabberG/src/jabber.cpp | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'protocols/JabberG/src/jabber.cpp') diff --git a/protocols/JabberG/src/jabber.cpp b/protocols/JabberG/src/jabber.cpp index 18008f7313..043f709274 100644 --- a/protocols/JabberG/src/jabber.cpp +++ b/protocols/JabberG/src/jabber.cpp @@ -36,6 +36,7 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. #pragma comment(lib, "Secur32.lib") HINSTANCE hInst; +HMODULE hMsftedit; int hLangpack; unsigned int g_nTempFileId; @@ -199,6 +200,8 @@ extern "C" int __declspec(dllexport) Load() CallService(MS_UTILS_GETCOUNTRYLIST, (WPARAM)&g_cbCountries, (LPARAM)&g_countries); + hMsftedit = LoadLibrary(L"Msftedit.dll"); + hExtListInit = CreateHookableEvent(ME_JABBER_EXTLISTINIT); hDiscoInfoResult = CreateHookableEvent(ME_JABBER_SRVDISCOINFO); @@ -213,6 +216,7 @@ extern "C" int __declspec(dllexport) Load() g_IconsInit(); g_XstatusIconsInit(); + // Init extra icons hExtraActivity = ExtraIcon_RegisterIcolib("activity", LPGEN("Jabber Activity"), "jabber_dancing"); hExtraMood = ExtraIcon_RegisterIcolib("mood", LPGEN("Jabber Mood"), "jabber_contemplative"); @@ -229,6 +233,9 @@ extern "C" int __declspec(dllexport) Unload(void) { JabberUserInfoUninit(); + if (hMsftedit != NULL) + FreeLibrary(hMsftedit); + DestroyHookableEvent(hExtListInit); DestroyHookableEvent(hDiscoInfoResult); -- cgit v1.2.3