Fix test cases for Release builds: The -O3 optimization step seems to cause segfaults on implicit integer overflows, so make the wanted overflows explicit in FakeAuthenticatedCipher.

This commit is contained in:
Sebastian Messmer 2016-02-15 05:00:30 +01:00
parent d3aa06de18
commit 2347782f6a
1 changed files with 3 additions and 3 deletions

View File

@ -90,14 +90,14 @@ namespace cpputils {
private:
static int32_t _parity(const byte *data, unsigned int size) {
int32_t parity = 34343435; // some init value
int32_t *intData = (int32_t *) data;
const int32_t *intData = reinterpret_cast<const int32_t *>(data);
unsigned int intSize = size / sizeof(int32_t);
for (unsigned int i = 0; i < intSize; ++i) {
parity += intData[i];
parity = ((int64_t)parity) + intData[i];
}
unsigned int remainingBytes = size - 4 * intSize;
for (unsigned int i = 0; i < remainingBytes; ++i) {
parity += (data[4 * intSize + i] << (24 - 8 * i));
parity = ((int64_t)parity) + (data[4 * intSize + i] << (24 - 8 * i));
}
return parity;
}