summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKevin Smith <git@kismith.co.uk>2009-08-09 14:37:57 (GMT)
committerKevin Smith <git@kismith.co.uk>2009-08-09 14:37:57 (GMT)
commitb589aa3732712c31da44523fa60fc5c4bc92ea9b (patch)
tree8874c488a7d3f40669a69276dcbbdebb2fa3cd97 /Swift/Controllers
parentfdb63d1c161ff951969244906a77be016d9b2f02 (diff)
downloadswift-b589aa3732712c31da44523fa60fc5c4bc92ea9b.zip
swift-b589aa3732712c31da44523fa60fc5c4bc92ea9b.tar.bz2
Fix long-standing bug with a crash on quit after joining MUCs.
Diffstat (limited to 'Swift/Controllers')
-rw-r--r--Swift/Controllers/MUCController.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/Swift/Controllers/MUCController.cpp b/Swift/Controllers/MUCController.cpp
index 37389a2..848f540 100644
--- a/Swift/Controllers/MUCController.cpp
+++ b/Swift/Controllers/MUCController.cpp
@@ -42,8 +42,7 @@ MUCController::MUCController (
MUCController::~MUCController() {
delete muc_;
- //don't crash on exit by masking this. FIXME.
- //delete roster_;
+ delete roster_;
}
void MUCController::handleWindowClosed() {