diff options
author | George Hazan <ghazan@miranda.im> | 2019-01-08 23:41:43 +0200 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2019-01-08 23:41:43 +0200 |
commit | a6eae725381b5329011e4dc8e582ad3db59ba059 (patch) | |
tree | 93af474d8c6290f6546cf65e9113e6de08cba430 /protocols/IRCG/src/ircproto.cpp | |
parent | de300f88d5cd37d926d89a11a411b7c1a0ca8a30 (diff) |
fixes #1715 (by default account's destructor doesn't free network handle)
Diffstat (limited to 'protocols/IRCG/src/ircproto.cpp')
-rw-r--r-- | protocols/IRCG/src/ircproto.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/protocols/IRCG/src/ircproto.cpp b/protocols/IRCG/src/ircproto.cpp index 7335225248..83225e0699 100644 --- a/protocols/IRCG/src/ircproto.cpp +++ b/protocols/IRCG/src/ircproto.cpp @@ -150,7 +150,6 @@ CIrcProto::~CIrcProto() con = nullptr;
}
- Netlib_CloseHandle(m_hNetlibUser); m_hNetlibUser = nullptr;
Netlib_CloseHandle(hNetlibDCC); hNetlibDCC = nullptr;
mir_free(m_alias);
|