Merge #7922: CBase58Data::SetString: cleanse the full vector

5770449 CBase58Data::SetString: cleanse the full vector (Kaz Wesley)
This commit is contained in:
Wladimir J. van der Laan 2016-04-22 09:04:12 +02:00
commit 90653bc91d
No known key found for this signature in database
GPG Key ID: 74810B012346C9A6
1 changed files with 1 additions and 1 deletions

View File

@ -177,7 +177,7 @@ bool CBase58Data::SetString(const char* psz, unsigned int nVersionBytes)
vchData.resize(vchTemp.size() - nVersionBytes);
if (!vchData.empty())
memcpy(&vchData[0], &vchTemp[nVersionBytes], vchData.size());
memory_cleanse(&vchTemp[0], vchData.size());
memory_cleanse(&vchTemp[0], vchTemp.size());
return true;
}