diff options
author | Kevin Smith <git@kismith.co.uk> | 2009-08-09 14:37:57 (GMT) |
---|---|---|
committer | Kevin Smith <git@kismith.co.uk> | 2009-08-09 14:37:57 (GMT) |
commit | b589aa3732712c31da44523fa60fc5c4bc92ea9b (patch) | |
tree | 8874c488a7d3f40669a69276dcbbdebb2fa3cd97 /Swift/Controllers | |
parent | fdb63d1c161ff951969244906a77be016d9b2f02 (diff) | |
download | swift-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.cpp | 3 |
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() { |