diff options
author | George Hazan <george.hazan@gmail.com> | 2015-06-16 09:52:23 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2015-06-16 09:52:23 +0000 |
commit | 0a720dfc2ba0b1b2bfe6a23ea3639aea2ddff013 (patch) | |
tree | 9ae05c8cf1724a2c69ee5c48d8358d58ae730a25 /protocols/Steam/src/steam_events.cpp | |
parent | cda93cac89134d0ac7097dd054c02256abf0c50f (diff) |
crash fix
git-svn-id: http://svn.miranda-ng.org/main/trunk@14190 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/Steam/src/steam_events.cpp')
-rw-r--r-- | protocols/Steam/src/steam_events.cpp | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/protocols/Steam/src/steam_events.cpp b/protocols/Steam/src/steam_events.cpp index cbaf2302ae..2e91508915 100644 --- a/protocols/Steam/src/steam_events.cpp +++ b/protocols/Steam/src/steam_events.cpp @@ -5,29 +5,14 @@ int CSteamProto::OnModulesLoaded(WPARAM, LPARAM) HookProtoEvent(ME_OPT_INITIALISE, &CSteamProto::OnOptionsInit); HookProtoEvent(ME_IDLE_CHANGED, &CSteamProto::OnIdleChanged); - TCHAR name[128]; - mir_sntprintf(name, SIZEOF(name), TranslateT("%s connection"), m_tszUserName); - - NETLIBUSER nlu = { sizeof(nlu) }; - nlu.flags = NUF_INCOMING | NUF_OUTGOING | NUF_HTTPCONNS | NUF_TCHAR; - nlu.ptszDescriptiveName = name; - nlu.szSettingsModule = m_szModuleName; - m_hNetlibUser = (HANDLE)CallService(MS_NETLIB_REGISTERUSER, 0, (LPARAM)&nlu); - - requestQueue = new RequestQueue(m_hNetlibUser); - HookEvent(ME_CLIST_PREBUILDCONTACTMENU, &CSteamProto::PrebuildContactMenu); - return 0; } int CSteamProto::OnPreShutdown(WPARAM, LPARAM) { - delete requestQueue; - Netlib_CloseHandle(this->m_hNetlibUser); this->m_hNetlibUser = NULL; - return 0; } |