diff options
author | Tobias Weimer <wishmaster51@googlemail.com> | 2015-03-27 22:07:31 +0000 |
---|---|---|
committer | Tobias Weimer <wishmaster51@googlemail.com> | 2015-03-27 22:07:31 +0000 |
commit | bcd3d5eedda6f93c8846f77848e950b4e78fcd81 (patch) | |
tree | 45861e1b56a4b9e4b41b3add563ae4b4612e324a /protocols/Yahoo/src/chat.cpp | |
parent | 171d9d47bbccf67edf73042eaab8eec616bd5efb (diff) |
Yahoo:
- Fix for a broken URL
- minor bugfixes
git-svn-id: http://svn.miranda-ng.org/main/trunk@12532 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/Yahoo/src/chat.cpp')
-rw-r--r-- | protocols/Yahoo/src/chat.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/protocols/Yahoo/src/chat.cpp b/protocols/Yahoo/src/chat.cpp index c35b1d0432..b99cd41887 100644 --- a/protocols/Yahoo/src/chat.cpp +++ b/protocols/Yahoo/src/chat.cpp @@ -106,6 +106,7 @@ void ext_yahoo_conf_userjoin(int id, const char *me, const char *who, const char if (!ppro) return;
CYahooProto::ChatRoom *cm = ppro->m_chatrooms.find((CYahooProto::ChatRoom*)&room);
+ if (!cm) return;
for (YList *l = cm->members; l; l = l->next)
{
if (!strcmp(who, (char*)l->data))
|