Fill with zeroes instead of sizeof

This commit is contained in:
Dale Glass 2024-06-01 21:21:30 +02:00
parent 1f4116d283
commit 1e3ef06c35

View file

@ -34,7 +34,7 @@ static void readWriteHelper(const std::vector<bool>& src) {
int numBits = (int)src.size();
int numBytes = calcBitVectorSize(numBits);
uint8_t* bytes = new uint8_t[numBytes];
memset(bytes, sizeof(uint8_t), numBytes);
memset(bytes, 0, numBytes);
int numBytesWritten = writeBitVector(bytes, numBits, [&](int i) {
return src[i];
});