mirror of
https://github.com/bitcoin/bitcoin.git
synced 2026-03-09 15:15:12 +01:00
refactor: Avoid unsigned integer overflow in core_write
This commit is contained in:
@@ -65,7 +65,7 @@ std::string FormatScript(const CScript& script)
|
||||
ret += strprintf("0x%x ", HexStr(std::vector<uint8_t>(it2, script.end())));
|
||||
break;
|
||||
}
|
||||
return ret.substr(0, ret.size() - 1);
|
||||
return ret.substr(0, ret.empty() ? ret.npos : ret.size() - 1);
|
||||
}
|
||||
|
||||
const std::map<unsigned char, std::string> mapSigHashTypes = {
|
||||
|
||||
Reference in New Issue
Block a user