Merge pull request #4955

87314c1 Fixing improper input syntax and failing bounds check (ENikS)
This commit is contained in:
Pieter Wuille 2014-09-23 20:20:13 +02:00
commit 7a04f3d708
No known key found for this signature in database
GPG key ID: 57896D2FF8F0B657

View file

@ -921,7 +921,7 @@ public:
Init(nTypeIn, nVersionIn);
}
CDataStream(const std::vector<unsigned char>& vchIn, int nTypeIn, int nVersionIn) : vch((char*)&vchIn.begin()[0], (char*)&vchIn.end()[0])
CDataStream(const std::vector<unsigned char>& vchIn, int nTypeIn, int nVersionIn) : vch(vchIn.begin(), vchIn.end())
{
Init(nTypeIn, nVersionIn);
}