diff options
| author | Carl Hetherington <cth@carlh.net> | 2014-01-24 13:23:01 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2014-01-24 13:23:01 +0000 |
| commit | a76938561c26dd59d29e45150d1954d14171f6e7 (patch) | |
| tree | b50790962b99d0047b95ef65685664900ced10a4 | |
| parent | 3b7e713e815b47772d17ec41ca83f200ea19cbaa (diff) | |
Try to fix repeatedly-reported exceptions.
| -rw-r--r-- | ChangeLog | 4 | ||||
| -rw-r--r-- | src/lib/exceptions.h | 1 |
2 files changed, 5 insertions, 0 deletions
@@ -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 (); } } |
