mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-07-06 16:36:57 +02:00
Make CScript::clear() release its memory
This commit is contained in:
@ -730,6 +730,12 @@ public:
|
|||||||
{
|
{
|
||||||
return CScriptID(Hash160(*this));
|
return CScriptID(Hash160(*this));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void clear()
|
||||||
|
{
|
||||||
|
// The default std::vector::clear() does not release memory.
|
||||||
|
std::vector<unsigned char>().swap(*this);
|
||||||
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
/** Compact serializer for scripts.
|
/** Compact serializer for scripts.
|
||||||
|
Reference in New Issue
Block a user