summaryrefslogtreecommitdiff
path: root/protocols/JabberG/src/jabber_proto.cpp
diff options
context:
space:
mode:
authorGluzskiy Alexandr <sss@sss.chaoslab.ru>2017-03-27 20:08:55 +0300
committerGluzskiy Alexandr <sss@sss.chaoslab.ru>2017-03-27 20:17:27 +0300
commitb60c918dbcb16f4da7c35c15b190ee9def957a49 (patch)
tree2284abfc14457bf42d1c6d5ab9e36a3ef871f68b /protocols/JabberG/src/jabber_proto.cpp
parent780b307ddff495b0a4394d3880b5a3ae7a83f26e (diff)
omemo: working on 4.3
removed xep-0060 8.1.1 implementation because xep-0163 requires node auto-create support reverted to "instand publish" logic instead of node precreation //looks like we have some problems with pubsub events receiving mechanism or client features publishing which is blocker problem for continuing to work on omemo implementation.
Diffstat (limited to 'protocols/JabberG/src/jabber_proto.cpp')
-rwxr-xr-xprotocols/JabberG/src/jabber_proto.cpp4
1 files changed, 1 insertions, 3 deletions
diff --git a/protocols/JabberG/src/jabber_proto.cpp b/protocols/JabberG/src/jabber_proto.cpp
index 8131541853..19813ac138 100755
--- a/protocols/JabberG/src/jabber_proto.cpp
+++ b/protocols/JabberG/src/jabber_proto.cpp
@@ -70,8 +70,7 @@ CJabberProto::CJabberProto(const char *aProtoName, const wchar_t *aUserName) :
m_hPrivacyMenuRoot(0),
m_hPrivacyMenuItems(10),
m_lstJabberFeatCapPairsDynamic(2),
- m_uEnabledFeatCapsDynamic(0),
- m_PubsubServiceName(nullptr)
+ m_uEnabledFeatCapsDynamic(0)
{
m_szXmlStreamToBeInitialized = NULL;
@@ -191,7 +190,6 @@ CJabberProto::~CJabberProto()
mir_free(m_lstJabberFeatCapPairsDynamic[i]->szDescription);
delete m_lstJabberFeatCapPairsDynamic[i];
}
- mir_free(m_PubsubServiceName);
}
////////////////////////////////////////////////////////////////////////////////////////