Fix out-of-bounds read noticed by Ricardo Correia
Sizeof() returned the size of a pointer instead of the size of the buffer. Fixes issue #1924.
This commit is contained in:
parent
675a39fc4f
commit
4fbad9124e
1 changed files with 1 additions and 4 deletions
|
@ -3745,9 +3745,6 @@ public:
|
|||
}
|
||||
};
|
||||
|
||||
const char* pszDummy = "\0\0";
|
||||
CScript scriptDummy(std::vector<unsigned char>(pszDummy, pszDummy + sizeof(pszDummy)));
|
||||
|
||||
CBlock* CreateNewBlock(CReserveKey& reservekey)
|
||||
{
|
||||
CBlockIndex* pindexPrev = pindexBest;
|
||||
|
@ -3981,7 +3978,7 @@ CBlock* CreateNewBlock(CReserveKey& reservekey)
|
|||
pblock->UpdateTime(pindexPrev);
|
||||
pblock->nBits = GetNextWorkRequired(pindexPrev, pblock.get());
|
||||
pblock->nNonce = 0;
|
||||
pblock->vtx[0].vin[0].scriptSig = scriptDummy;
|
||||
pblock->vtx[0].vin[0].scriptSig = CScript() << OP_0 << OP_0;
|
||||
|
||||
CBlockIndex indexDummy(*pblock);
|
||||
indexDummy.pprev = pindexPrev;
|
||||
|
|
Loading…
Add table
Reference in a new issue