CKeyPool avoid "catch (...)" in SerializationOp

This commit is contained in:
Jonas Schnelli 2017-01-17 16:04:16 +01:00
parent e138876f0a
commit 58e148333e
No known key found for this signature in database
GPG Key ID: 1EB776BB03C7922D
1 changed files with 1 additions and 1 deletions

View File

@ -118,7 +118,7 @@ public:
try {
READWRITE(fInternal);
}
catch (...) {
catch (std::ios_base::failure&) {
/* flag as external address if we can't read the internal boolean */
fInternal = false;
}