mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-08-03 05:02:46 +02:00
refactor: Use ignore helper when unserializing an invalid pubkey
This commit is contained in:
@@ -141,7 +141,7 @@ public:
|
||||
template <typename Stream>
|
||||
void Unserialize(Stream& s)
|
||||
{
|
||||
unsigned int len = ::ReadCompactSize(s);
|
||||
const unsigned int len(::ReadCompactSize(s));
|
||||
if (len <= SIZE) {
|
||||
s.read((char*)vch, len);
|
||||
if (len != size()) {
|
||||
@@ -149,9 +149,7 @@ public:
|
||||
}
|
||||
} else {
|
||||
// invalid pubkey, skip available data
|
||||
char dummy;
|
||||
while (len--)
|
||||
s.read(&dummy, 1);
|
||||
s.ignore(len);
|
||||
Invalidate();
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user