mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-02-09 10:43:19 -05:00
CKeyPool avoid "catch (...)" in SerializationOp
This commit is contained in:
parent
e138876f0a
commit
58e148333e
1 changed files with 1 additions and 1 deletions
|
@ -118,7 +118,7 @@ public:
|
||||||
try {
|
try {
|
||||||
READWRITE(fInternal);
|
READWRITE(fInternal);
|
||||||
}
|
}
|
||||||
catch (...) {
|
catch (std::ios_base::failure&) {
|
||||||
/* flag as external address if we can't read the internal boolean */
|
/* flag as external address if we can't read the internal boolean */
|
||||||
fInternal = false;
|
fInternal = false;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue