mirror of
https://github.com/kvazar-network/kevacoin.git
synced 2025-03-13 06:01:45 +00:00
Add length check for CExtKey deserialization
This commit is contained in:
parent
22e301a3d5
commit
07685d1bc1
@ -172,6 +172,8 @@ struct CExtKey {
|
|||||||
{
|
{
|
||||||
unsigned int len = ::ReadCompactSize(s);
|
unsigned int len = ::ReadCompactSize(s);
|
||||||
unsigned char code[BIP32_EXTKEY_SIZE];
|
unsigned char code[BIP32_EXTKEY_SIZE];
|
||||||
|
if (len != BIP32_EXTKEY_SIZE)
|
||||||
|
throw std::runtime_error("Invalid extended key size\n");
|
||||||
s.read((char *)&code[0], len);
|
s.read((char *)&code[0], len);
|
||||||
Decode(code);
|
Decode(code);
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user