diff options
author | George Hazan <george.hazan@gmail.com> | 2013-10-03 18:28:20 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2013-10-03 18:28:20 +0000 |
commit | 784c2757e8c791b4c76a6e739f08b0fb92ec093a (patch) | |
tree | ba42917a56f96f8b5d6f55edb36d9fc337ca1b39 /protocols/JabberG/src/jabber_thread.cpp | |
parent | 9026d578dc4b14aa12c51a2147bb999703efbb36 (diff) |
- old junk removed;
- mir_free() doesn't require a check
git-svn-id: http://svn.miranda-ng.org/main/trunk@6321 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/JabberG/src/jabber_thread.cpp')
-rw-r--r-- | protocols/JabberG/src/jabber_thread.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/protocols/JabberG/src/jabber_thread.cpp b/protocols/JabberG/src/jabber_thread.cpp index 7c826345e5..c0b990b17e 100644 --- a/protocols/JabberG/src/jabber_thread.cpp +++ b/protocols/JabberG/src/jabber_thread.cpp @@ -597,8 +597,8 @@ recvRest: Log("Thread ended: type=%d server='%s'", info->type, info->server);
- if (info->type==JABBER_SESSION_NORMAL && m_ThreadInfo==info) {
- if (m_szStreamId) mir_free(m_szStreamId);
+ if (info->type == JABBER_SESSION_NORMAL && m_ThreadInfo == info) {
+ mir_free(m_szStreamId);
m_szStreamId = NULL;
m_ThreadInfo = NULL;
}
|