diff options
author | Kevin Smith <git@kismith.co.uk> | 2011-10-05 11:11:29 (GMT) |
---|---|---|
committer | Kevin Smith <git@kismith.co.uk> | 2011-10-05 11:11:29 (GMT) |
commit | 8159071adb232b68c2ce79479145fbcd04979245 (patch) | |
tree | 9282fc76499719c18fa9c9e892535d2f46030b43 /Swiften/EventLoop/EventLoop.cpp | |
parent | 4c942cbb0b76383bfad10b3677a75a52f9193cf7 (diff) | |
download | swift-contrib-8159071adb232b68c2ce79479145fbcd04979245.zip swift-contrib-8159071adb232b68c2ce79479145fbcd04979245.tar.bz2 |
Don't crash with label item without a label
Diffstat (limited to 'Swiften/EventLoop/EventLoop.cpp')
-rw-r--r-- | Swiften/EventLoop/EventLoop.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Swiften/EventLoop/EventLoop.cpp b/Swiften/EventLoop/EventLoop.cpp index 2b8f00d..afb6858 100644 --- a/Swiften/EventLoop/EventLoop.cpp +++ b/Swiften/EventLoop/EventLoop.cpp @@ -24,6 +24,9 @@ inline void invokeCallback(const Event& event) { catch (const std::exception& e) { std::cerr << "Uncaught exception in event loop: " << e.what() << std::endl; } + catch (...) { + std::cerr << "Uncaught non-exception in event loop" << std::endl; + } } EventLoop::EventLoop() : nextEventID_(0), handlingEvents_(false) { |