summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog4
-rw-r--r--src/lib/exceptions.h1
2 files changed, 5 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 1b0832f4b..92926c2d1 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2014-01-24 Carl Hetherington <cth@carlh.net>
+
+ * Try to fix repeatedly-reported exceptions.
+
2014-01-23 Carl Hetherington <cth@carlh.net>
* Version 1.63.6 released.
diff --git a/src/lib/exceptions.h b/src/lib/exceptions.h
index c1240538f..3423a5754 100644
--- a/src/lib/exceptions.h
+++ b/src/lib/exceptions.h
@@ -253,6 +253,7 @@ public:
boost::mutex::scoped_lock lm (_mutex);
if (_exception) {
boost::rethrow_exception (_exception);
+ _exception = boost::exception_ptr ();
}
}