summaryrefslogtreecommitdiff
path: root/protocols/JabberG/src/jabber_proto.cpp
diff options
context:
space:
mode:
authorGluzskiy Alexandr <sss@sss.chaoslab.ru>2017-03-20 18:22:08 +0300
committerGluzskiy Alexandr <sss@sss.chaoslab.ru>2017-03-20 18:22:08 +0300
commit2f589b3ee66956ac31ce19844d7a1d321cc6850e (patch)
tree402841b991bc1cfdc1f6ea1727a2927d748019cf /protocols/JabberG/src/jabber_proto.cpp
parent100badfbc7d633078f25fb4b9ecd7350140e1dfa (diff)
omemo: working on 4.3
implemented pubsub address detection as required by xep-0060 8.1.1 implemented xep-0060 8.1.1, xep-0163 3 as required by omemo 4.3 omemo 4.3 now complete and working //TODO: chek createnode handlers, not always called, especially if connection is slow
Diffstat (limited to 'protocols/JabberG/src/jabber_proto.cpp')
-rwxr-xr-xprotocols/JabberG/src/jabber_proto.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/protocols/JabberG/src/jabber_proto.cpp b/protocols/JabberG/src/jabber_proto.cpp
index 19813ac138..8131541853 100755
--- a/protocols/JabberG/src/jabber_proto.cpp
+++ b/protocols/JabberG/src/jabber_proto.cpp
@@ -70,7 +70,8 @@ CJabberProto::CJabberProto(const char *aProtoName, const wchar_t *aUserName) :
m_hPrivacyMenuRoot(0),
m_hPrivacyMenuItems(10),
m_lstJabberFeatCapPairsDynamic(2),
- m_uEnabledFeatCapsDynamic(0)
+ m_uEnabledFeatCapsDynamic(0),
+ m_PubsubServiceName(nullptr)
{
m_szXmlStreamToBeInitialized = NULL;
@@ -190,6 +191,7 @@ CJabberProto::~CJabberProto()
mir_free(m_lstJabberFeatCapPairsDynamic[i]->szDescription);
delete m_lstJabberFeatCapPairsDynamic[i];
}
+ mir_free(m_PubsubServiceName);
}
////////////////////////////////////////////////////////////////////////////////////////