mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-11-11 22:50:59 +01:00
Merge #9743: Fix several potential issues found by sanitizers
1d31093fix tsan: utiltime race on nMockTime (Pieter Wuille)321bbc2fix ubsan: bitcoin-tx: not initialize context before IsFullyValid (Pieter Wuille) Tree-SHA512: 39ea83c6122f06339cd425deb236357694e84ce2e4e9c61c10b90a8909b6e42e8c7b76396175cdc4723ababd2fa4f935d48f8a469baf853c5a06d7b962a5c8dc
This commit is contained in:
@@ -657,11 +657,13 @@ static void MutateTx(CMutableTransaction& tx, const std::string& command,
|
||||
MutateTxDelOutput(tx, commandVal);
|
||||
else if (command == "outaddr")
|
||||
MutateTxAddOutAddr(tx, commandVal);
|
||||
else if (command == "outpubkey")
|
||||
else if (command == "outpubkey") {
|
||||
if (!ecc) { ecc.reset(new Secp256k1Init()); }
|
||||
MutateTxAddOutPubKey(tx, commandVal);
|
||||
else if (command == "outmultisig")
|
||||
} else if (command == "outmultisig") {
|
||||
if (!ecc) { ecc.reset(new Secp256k1Init()); }
|
||||
MutateTxAddOutMultiSig(tx, commandVal);
|
||||
else if (command == "outscript")
|
||||
} else if (command == "outscript")
|
||||
MutateTxAddOutScript(tx, commandVal);
|
||||
else if (command == "outdata")
|
||||
MutateTxAddOutData(tx, commandVal);
|
||||
|
||||
Reference in New Issue
Block a user