diff options
author | Kevin Smith <git@kismith.co.uk> | 2010-08-07 14:29:08 (GMT) |
---|---|---|
committer | Kevin Smith <git@kismith.co.uk> | 2010-08-07 14:29:08 (GMT) |
commit | 4a5a0977f661bf5c7c34ee7aa48b35073a682203 (patch) | |
tree | 1390c41105d901f773409a6b9ce8e36a09331b35 | |
parent | b0b9068a9760bcdbbd3d47aa2054d5ac79d16b4d (diff) | |
download | swift-contrib-4a5a0977f661bf5c7c34ee7aa48b35073a682203.zip swift-contrib-4a5a0977f661bf5c7c34ee7aa48b35073a682203.tar.bz2 |
Don't crash when kicked from a MUC.
Resolves: #521
-rw-r--r-- | Swiften/Roster/GroupRosterItem.cpp | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/Swiften/Roster/GroupRosterItem.cpp b/Swiften/Roster/GroupRosterItem.cpp index 8e4be35..bf4f838 100644 --- a/Swiften/Roster/GroupRosterItem.cpp +++ b/Swiften/Roster/GroupRosterItem.cpp @@ -64,11 +64,12 @@ void GroupRosterItem::removeAll() { ContactRosterItem* contact = dynamic_cast<ContactRosterItem*>(*it); if (contact) { delete contact; - } - GroupRosterItem* group = dynamic_cast<GroupRosterItem*>(*it); - if (group) { - group->removeAll(); - delete group; + } else { + GroupRosterItem* group = dynamic_cast<GroupRosterItem*>(*it); + if (group) { + group->removeAll(); + delete group; + } } it++; } |