diff options
author | MikalaiR <nikolay.romanovich@narod.ru> | 2015-05-06 17:00:09 +0000 |
---|---|---|
committer | MikalaiR <nikolay.romanovich@narod.ru> | 2015-05-06 17:00:09 +0000 |
commit | fe8490ae4e86e6ce87192983ea50eaebf6609cff (patch) | |
tree | 07f6b7b56e056417969261a39e51cd22796defcd /protocols | |
parent | e1696aaefdcd2bffb3708b9ba3880ae1c5e36817 (diff) |
git-svn-id: http://svn.miranda-ng.org/main/trunk@13467 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols')
-rw-r--r-- | protocols/SkypeWeb/src/skype_poll_processing.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/protocols/SkypeWeb/src/skype_poll_processing.cpp b/protocols/SkypeWeb/src/skype_poll_processing.cpp index 6aa339893d..137d620be9 100644 --- a/protocols/SkypeWeb/src/skype_poll_processing.cpp +++ b/protocols/SkypeWeb/src/skype_poll_processing.cpp @@ -26,6 +26,8 @@ void CSkypeProto::ProcessEndpointPresenceRes(JSONNODE *node) return;
MCONTACT hContact = FindContact(skypename);
+ if (hContact == NULL)
+ return;
//"publicInfo":{"capabilities":"","typ":"11","skypeNameVersion":"0/7.1.0.105//","nodeInfo":"","version":"24"}
JSONNODE *publicInfo = json_get(node, "publicInfo");
|