Fix memory leak and memory overwrite. Closes #969

This commit is contained in:
Dale Glass 2024-06-01 20:08:55 +02:00
parent bbc7c0a146
commit 1f4116d283

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, numBytes, sizeof(uint8_t));
memset(bytes, sizeof(uint8_t), numBytes);
int numBytesWritten = writeBitVector(bytes, numBits, [&](int i) {
return src[i];
});
@ -53,6 +53,8 @@ static void readWriteHelper(const std::vector<bool>& src) {
bool b = dst[i];
QCOMPARE(a, b);
}
delete[] bytes;
}
void BitVectorHelperTests::readWriteTest() {